diff --git a/ChangeLog.md b/ChangeLog.md index 8c38cdefb168..5a5f10d64612 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,24 @@ ## 2015.09.03 version 0.9.8 - +* Azure Compute (ARM) Cmdlets + * Add -Launch parameter for Get-AzureRemoteDesktopFile cmdlet +* Azure Backup - added the following cmdlets + * Backup-AzureRMBackupItem + * Register-AzureRMBackupContainer + * Disable-AzureRMBackupProtection + * Enable-AzureRMBackupProtection + * Get-AzureRMBackupItem + * Get-AzureRMBackupJob + * Get-AzureRMBackupJobDetails + * Stop-AzureRMBackupJob + * Wait-AzureRMBackupJob + * Get-AzureRMBackupProtectionPolicy + * New-AzureRMBackupProtectionPolicy + * New-AzureRMBackupRetentionPolicyObject + * Remove-AzureRMBackupProtectionPolicy + * Set-AzureRMBackupProtectionPolicy + * Get-AzureRMBackupRecoveryPoint + * Restore-AzureRMBackupItem + ## 2015.08.17 version 0.9.7 * Azure Profile cmdlets * New-AzureProfile @@ -29,23 +48,6 @@ * Added Restart-AzureRemoteAppVm cmdlet * Azure HDInsight cmdlets * Added cmdlet help -* Azure Backup - added the following cmdlets - * Backup-AzureRMBackupItem - * Register-AzureRMBackupContainer - * Disable-AzureRMBackupProtection - * Enable-AzureRMBackupProtection - * Get-AzureRMBackupItem - * Get-AzureRMBackupJob - * Get-AzureRMBackupJobDetails - * Stop-AzureRMBackupJob - * Wait-AzureRMBackupJob - * Get-AzureRMBackupProtectionPolicy - * New-AzureRMBackupProtectionPolicy - * New-AzureRMBackupRetentionPolicyObject - * Remove-AzureRMBackupProtectionPolicy - * Set-AzureRMBackupProtectionPolicy - * Get-AzureRMBackupRecoveryPoint - * Restore-AzureRMBackupItem ## 2015.08.07 version 0.9.6 * Azure Batch cmdlets diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index 1dbfaa5bc76a..844c5a05065e 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -2077,6 +2077,9 @@ + + + @@ -5475,6 +5478,7 @@ + diff --git a/src/AzurePowershell.sln b/src/AzurePowershell.sln index afe5a4118fc3..b79f0af2ee5a 100644 --- a/src/AzurePowershell.sln +++ b/src/AzurePowershell.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.30723.0 +# Visual Studio 14 +VisualStudioVersion = 14.0.23107.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8531411A-0137-4E27-9C5E-49E07C245048}" ProjectSection(SolutionItems) = preProject @@ -235,6 +235,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.SiteRecovery", "Re EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.SiteRecovery.Test", "ResourceManager\SiteRecovery\Commands.SiteRecovery.Test\Commands.SiteRecovery.Test.csproj", "{6C7D3D81-37AB-445E-8081-78A1FEC0A773}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManager.Common", "Common\Commands.ResourceManager.Common\Commands.ResourceManager.Common.csproj", "{3819D8A7-C62C-4C47-8DDD-0332D9CE1252}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -585,6 +587,10 @@ Global {6C7D3D81-37AB-445E-8081-78A1FEC0A773}.Debug|Any CPU.Build.0 = Debug|Any CPU {6C7D3D81-37AB-445E-8081-78A1FEC0A773}.Release|Any CPU.ActiveCfg = Release|Any CPU {6C7D3D81-37AB-445E-8081-78A1FEC0A773}.Release|Any CPU.Build.0 = Release|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/Common/AzurePSCmdlet.cs b/src/Common/AzurePSCmdlet.cs new file mode 100644 index 000000000000..a9311b6eb1f2 --- /dev/null +++ b/src/Common/AzurePSCmdlet.cs @@ -0,0 +1,267 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Concurrent; +using System.Diagnostics; +using System.Management.Automation; +using System.Net.Http.Headers; +using System.Reflection; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.WindowsAzure.Commands.Common; + +namespace Microsoft.WindowsAzure.Commands.Utilities.Common +{ + /// + /// Represents base class for all Azure cmdlets. + /// + public abstract class AzurePSCmdlet : PSCmdlet, IDisposable + { + private readonly ConcurrentQueue _debugMessages; + + private RecordingTracingInterceptor _httpTracingInterceptor; + + private DebugStreamTraceListener _adalListener; + + /// + /// Gets the PowerShell module name used for user agent header. + /// By default uses "Azurepowershell" + /// + protected virtual string ModuleName { get { return "AzurePowershell"; } } + + /// + /// Gets PowerShell module version used for user agent header. + /// + protected string ModuleVersion { get { return Assembly.GetCallingAssembly().GetName().Version.ToString(); } } + + /// + /// Gets the default Azure context. + /// + protected abstract AzureContext DefaultContext { get; } + + /// + /// Initializes AzurePSCmdlet properties. + /// + public AzurePSCmdlet() + { + _debugMessages = new ConcurrentQueue(); + } + + /// + /// Cmdlet begin process. Write to logs, setup Http Tracing and initialize profile and adds user agent. + /// + protected override void BeginProcessing() + { + if (string.IsNullOrEmpty(ParameterSetName)) + { + WriteDebugWithTimestamp(string.Format("{0} begin processing without ParameterSet.", this.GetType().Name)); + } + else + { + WriteDebugWithTimestamp(string.Format("{0} begin processing with ParameterSet '{1}'.", this.GetType().Name, ParameterSetName)); + } + + if (DefaultContext != null && DefaultContext.Account != null && DefaultContext.Account.Id != null) + { + WriteDebugWithTimestamp(string.Format("using account id '{0}'...", DefaultContext.Account.Id)); + } + + _httpTracingInterceptor = _httpTracingInterceptor ?? new RecordingTracingInterceptor(_debugMessages); + _adalListener = _adalListener ?? new DebugStreamTraceListener(_debugMessages); + RecordingTracingInterceptor.AddToContext(_httpTracingInterceptor); + DebugStreamTraceListener.AddAdalTracing(_adalListener); + + ProductInfoHeaderValue userAgentValue = new ProductInfoHeaderValue( + ModuleName, string.Format("v{0}", ModuleVersion)); + AzureSession.ClientFactory.UserAgents.Add(userAgentValue); + + base.BeginProcessing(); + } + + /// + /// End processing. Flush messages in tracing interceptor and save profile and removes user agent. + /// + protected override void EndProcessing() + { + string message = string.Format("{0} end processing.", this.GetType().Name); + WriteDebugWithTimestamp(message); + + RecordingTracingInterceptor.RemoveFromContext(_httpTracingInterceptor); + DebugStreamTraceListener.RemoveAdalTracing(_adalListener); + FlushDebugMessages(); + + AzureSession.ClientFactory.UserAgents.RemoveAll(u => u.Product.Name == ModuleName); + + base.EndProcessing(); + } + + protected string CurrentPath() + { + // SessionState is only available within Powershell so default to + // the CurrentDirectory when being run from tests. + return (SessionState != null) ? + SessionState.Path.CurrentLocation.Path : + Environment.CurrentDirectory; + } + + protected bool IsVerbose() + { + bool verbose = MyInvocation.BoundParameters.ContainsKey("Verbose") && ((SwitchParameter)MyInvocation.BoundParameters["Verbose"]).ToBool(); + return verbose; + } + + protected new void WriteError(ErrorRecord errorRecord) + { + FlushDebugMessages(); + base.WriteError(errorRecord); + } + + protected new void WriteObject(object sendToPipeline) + { + FlushDebugMessages(); + base.WriteObject(sendToPipeline); + } + + protected new void WriteObject(object sendToPipeline, bool enumerateCollection) + { + FlushDebugMessages(); + base.WriteObject(sendToPipeline, enumerateCollection); + } + + protected new void WriteVerbose(string text) + { + FlushDebugMessages(); + base.WriteVerbose(text); + } + + protected new void WriteWarning(string text) + { + FlushDebugMessages(); + base.WriteWarning(text); + } + + protected new void WriteCommandDetail(string text) + { + FlushDebugMessages(); + base.WriteCommandDetail(text); + } + + protected new void WriteProgress(ProgressRecord progressRecord) + { + FlushDebugMessages(); + base.WriteProgress(progressRecord); + } + + protected new void WriteDebug(string text) + { + FlushDebugMessages(); + base.WriteDebug(text); + } + + protected void WriteVerboseWithTimestamp(string message, params object[] args) + { + WriteVerbose(string.Format("{0:T} - {1}", DateTime.Now, string.Format(message, args))); + } + + protected void WriteVerboseWithTimestamp(string message) + { + WriteVerbose(string.Format("{0:T} - {1}", DateTime.Now, message)); + } + + protected void WriteWarningWithTimestamp(string message) + { + WriteWarning(string.Format("{0:T} - {1}", DateTime.Now, message)); + } + + protected void WriteDebugWithTimestamp(string message, params object[] args) + { + WriteDebug(string.Format("{0:T} - {1}", DateTime.Now, string.Format(message, args))); + } + + protected void WriteDebugWithTimestamp(string message) + { + WriteDebug(string.Format("{0:T} - {1}", DateTime.Now, message)); + } + + protected void WriteErrorWithTimestamp(string message) + { + WriteError( + new ErrorRecord(new Exception(string.Format("{0:T} - {1}", DateTime.Now, message)), + string.Empty, + ErrorCategory.NotSpecified, + null)); + } + + /// + /// Write an error message for a given exception. + /// + /// The exception resulting from the error. + protected virtual void WriteExceptionError(Exception ex) + { + Debug.Assert(ex != null, "ex cannot be null or empty."); + WriteError(new ErrorRecord(ex, string.Empty, ErrorCategory.CloseError, null)); + } + + protected PSObject ConstructPSObject(string typeName, params object[] args) + { + return PowerShellUtilities.ConstructPSObject(typeName, args); + } + + protected void SafeWriteOutputPSObject(string typeName, params object[] args) + { + PSObject customObject = this.ConstructPSObject(typeName, args); + WriteObject(customObject); + } + + private void FlushDebugMessages() + { + string message; + while (_debugMessages.TryDequeue(out message)) + { + base.WriteDebug(message); + } + } + + /// + /// Asks for confirmation before executing the action. + /// + /// Do not ask for confirmation + /// Message to describe the action + /// Message to prompt after the active is performed. + /// The target name. + /// The action code + protected void ConfirmAction(bool force, string actionMessage, string processMessage, string target, Action action) + { + if (force || ShouldContinue(actionMessage, "")) + { + if (ShouldProcess(target, processMessage)) + { + action(); + } + } + } + + protected virtual void Dispose(bool disposing) + { + _adalListener.Dispose(); + } + + public void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } + } +} diff --git a/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj b/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj index 797ba145409e..3115619b0f0c 100644 --- a/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj +++ b/src/Common/Commands.Common.Storage/Commands.Common.Storage.csproj @@ -166,12 +166,6 @@ - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - - ResXFileCodeGenerator @@ -181,6 +175,12 @@ + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + diff --git a/src/Common/Commands.Common.Test/Commands.Common.Test.csproj b/src/Common/Commands.Common.Test/Commands.Common.Test.csproj index 700674e12a6d..1a4e276a8111 100644 --- a/src/Common/Commands.Common.Test/Commands.Common.Test.csproj +++ b/src/Common/Commands.Common.Test/Commands.Common.Test.csproj @@ -188,7 +188,6 @@ - diff --git a/src/Common/Commands.Common/AzureSMCmdlet.cs b/src/Common/Commands.Common/AzureSMCmdlet.cs index 73ffe7f71a87..f55c8e982246 100644 --- a/src/Common/Commands.Common/AzureSMCmdlet.cs +++ b/src/Common/Commands.Common/AzureSMCmdlet.cs @@ -25,11 +25,8 @@ namespace Microsoft.WindowsAzure.Commands.Utilities.Common { - public abstract class AzureSMCmdlet : PSCmdlet + public abstract class AzureSMCmdlet : AzurePSCmdlet { - private readonly ConcurrentQueue _debugMessages = new ConcurrentQueue(); - private RecordingTracingInterceptor _httpTracingInterceptor; - private DebugStreamTraceListener _adalListener; protected static AzureSMProfile _currentProfile = null; [Parameter(Mandatory = false, HelpMessage = "In-memory profile.")] @@ -63,6 +60,8 @@ private get protected static TokenCache DefaultMemoryTokenCache { get; set; } + protected override AzureContext DefaultContext { get { return CurrentProfile.DefaultContext; } } + static AzureSMCmdlet() { if (!TestMockSupport.RunningMocked) @@ -70,7 +69,6 @@ static AzureSMCmdlet() AzureSession.ClientFactory.AddAction(new RPRegistrationAction()); } - AzureSession.ClientFactory.UserAgents.Add(AzurePowerShell.UserAgentValue); if (!TestMockSupport.RunningMocked) { InitializeTokenCaches(); @@ -101,20 +99,6 @@ protected static AzureSMProfile InitializeDefaultProfile() return new AzureSMProfile(); } - /// - /// Get the context for the current profile before BeginProcessing is called - /// - /// The context for the current profile - protected AzureContext GetCurrentContext() - { - if (Profile != null) - { - return Profile.DefaultContext; - } - - return CurrentProfile.DefaultContext; - } - protected static void InitializeTokenCaches() { DefaultMemoryTokenCache = TokenCache.DefaultShared; @@ -153,25 +137,6 @@ protected static void SetTokenCacheForProfile(AzureSMProfile profile) protected override void BeginProcessing() { InitializeProfile(); - if (string.IsNullOrEmpty(ParameterSetName)) - { - WriteDebugWithTimestamp(string.Format(Resources.BeginProcessingWithoutParameterSetLog, this.GetType().Name)); - } - else - { - WriteDebugWithTimestamp(string.Format(Resources.BeginProcessingWithParameterSetLog, this.GetType().Name, ParameterSetName)); - } - - if (Profile != null && Profile.DefaultContext != null && Profile.DefaultContext.Account != null && Profile.DefaultContext.Account.Id != null) - { - WriteDebugWithTimestamp(string.Format("using account id '{0}'...", Profile.DefaultContext.Account.Id)); - } - - _httpTracingInterceptor = _httpTracingInterceptor?? new RecordingTracingInterceptor(_debugMessages); - _adalListener = _adalListener?? new DebugStreamTraceListener(_debugMessages); - RecordingTracingInterceptor.AddToContext(_httpTracingInterceptor); - DebugStreamTraceListener.AddAdalTracing(_adalListener); - base.BeginProcessing(); } @@ -188,144 +153,6 @@ protected virtual void InitializeProfile() SetTokenCacheForProfile(Profile); } - /// - /// End processing. Flush messages in tracing interceptor and save profile. - /// - protected override void EndProcessing() - { - string message = string.Format(Resources.EndProcessingLog, this.GetType().Name); - WriteDebugWithTimestamp(message); - - RecordingTracingInterceptor.RemoveFromContext(_httpTracingInterceptor); - DebugStreamTraceListener.RemoveAdalTracing(_adalListener); - FlushDebugMessages(); - - base.EndProcessing(); - } - - public bool HasCurrentSubscription - { - get { return Profile.DefaultContext.Subscription != null; } - } - - protected string CurrentPath() - { - // SessionState is only available within Powershell so default to - // the CurrentDirectory when being run from tests. - return (SessionState != null) ? - SessionState.Path.CurrentLocation.Path : - Environment.CurrentDirectory; - } - - protected bool IsVerbose() - { - bool verbose = MyInvocation.BoundParameters.ContainsKey("Verbose") && ((SwitchParameter)MyInvocation.BoundParameters["Verbose"]).ToBool(); - return verbose; - } - - public new void WriteError(ErrorRecord errorRecord) - { - FlushDebugMessages(); - base.WriteError(errorRecord); - } - - public new void WriteObject(object sendToPipeline) - { - FlushDebugMessages(); - base.WriteObject(sendToPipeline); - } - - public new void WriteObject(object sendToPipeline, bool enumerateCollection) - { - FlushDebugMessages(); - base.WriteObject(sendToPipeline, enumerateCollection); - } - - public new void WriteVerbose(string text) - { - FlushDebugMessages(); - base.WriteVerbose(text); - } - - public new void WriteWarning(string text) - { - FlushDebugMessages(); - base.WriteWarning(text); - } - - public new void WriteCommandDetail(string text) - { - FlushDebugMessages(); - base.WriteCommandDetail(text); - } - - public new void WriteProgress(ProgressRecord progressRecord) - { - FlushDebugMessages(); - base.WriteProgress(progressRecord); - } - - public new void WriteDebug(string text) - { - FlushDebugMessages(); - base.WriteDebug(text); - } - - protected void WriteVerboseWithTimestamp(string message, params object[] args) - { - WriteVerbose(string.Format("{0:T} - {1}", DateTime.Now, string.Format(message, args))); - } - - protected void WriteVerboseWithTimestamp(string message) - { - WriteVerbose(string.Format("{0:T} - {1}", DateTime.Now, message)); - } - - protected void WriteWarningWithTimestamp(string message) - { - WriteWarning(string.Format("{0:T} - {1}", DateTime.Now, message)); - } - - protected void WriteDebugWithTimestamp(string message, params object[] args) - { - WriteDebug(string.Format("{0:T} - {1}", DateTime.Now, string.Format(message, args))); - } - - protected void WriteDebugWithTimestamp(string message) - { - WriteDebug(string.Format("{0:T} - {1}", DateTime.Now, message)); - } - - protected void WriteErrorWithTimestamp(string message) - { - WriteError( - new ErrorRecord(new Exception(string.Format("{0:T} - {1}", DateTime.Now, message)), - string.Empty, - ErrorCategory.NotSpecified, - null)); - } - - /// - /// Write an error message for a given exception. - /// - /// The exception resulting from the error. - protected virtual void WriteExceptionError(Exception ex) - { - Debug.Assert(ex != null, "ex cannot be null or empty."); - WriteError(new ErrorRecord(ex, string.Empty, ErrorCategory.CloseError, null)); - } - - protected PSObject ConstructPSObject(string typeName, params object[] args) - { - return PowerShellUtilities.ConstructPSObject(typeName, args); - } - - protected void SafeWriteOutputPSObject(string typeName, params object[] args) - { - PSObject customObject = this.ConstructPSObject(typeName, args); - WriteObject(customObject); - } - public virtual void ExecuteCmdlet() { // Do nothing. @@ -343,33 +170,5 @@ protected override void ProcessRecord() WriteExceptionError(ex); } } - - private void FlushDebugMessages() - { - string message; - while (_debugMessages.TryDequeue(out message)) - { - base.WriteDebug(message); - } - } - - /// - /// Asks for confirmation before executing the action. - /// - /// Do not ask for confirmation - /// Message to describe the action - /// Message to prompt after the active is performed. - /// The target name. - /// The action code - protected void ConfirmAction(bool force, string actionMessage, string processMessage, string target, Action action) - { - if (force || ShouldContinue(actionMessage, "")) - { - if (ShouldProcess(target, processMessage)) - { - action(); - } - } - } } } diff --git a/src/Common/Commands.Common/CmdletExtensions.cs b/src/Common/Commands.Common/CmdletExtensions.cs index ab04690bcee0..c1cb970e42a3 100644 --- a/src/Common/Commands.Common/CmdletExtensions.cs +++ b/src/Common/Commands.Common/CmdletExtensions.cs @@ -123,13 +123,6 @@ public static void InvokeEndProcessing(this PSCmdlet cmdlt) MethodInfo dynMethod = (typeof(PSCmdlet)).GetMethod("EndProcessing", BindingFlags.NonPublic | BindingFlags.Instance); dynMethod.Invoke(cmdlt, null); } - public static void ExecuteWithProcessing(this AzureSMCmdlet cmdlt) - { - cmdlt.InvokeBeginProcessing(); - cmdlt.ExecuteCmdlet(); - cmdlt.InvokeEndProcessing(); - - } #endregion } diff --git a/src/Common/Commands.Common/Commands.Common.csproj b/src/Common/Commands.Common/Commands.Common.csproj index 2ae5605b4a77..5cfe1949e29e 100644 --- a/src/Common/Commands.Common/Commands.Common.csproj +++ b/src/Common/Commands.Common/Commands.Common.csproj @@ -138,6 +138,9 @@ + + AzurePSCmdlet.cs + diff --git a/src/Common/Commands.Common/GeneralUtilities.cs b/src/Common/Commands.Common/GeneralUtilities.cs index 8eac773eedfe..72c7921c13a3 100644 --- a/src/Common/Commands.Common/GeneralUtilities.cs +++ b/src/Common/Commands.Common/GeneralUtilities.cs @@ -22,7 +22,6 @@ using System.Net.Http.Headers; using System.Reflection; using System.Security.Cryptography.X509Certificates; -using System.Security.Permissions; using System.ServiceModel.Channels; using System.Text; using System.Xml; @@ -49,19 +48,6 @@ private static bool TryFindCertificatesInStore(string thumbprint, return certificates != null && certificates.Count > 0; } - public static string GetNodeModulesPath() - { - return Path.Combine( - FileUtilities.GetAssemblyDirectory(), - Microsoft.WindowsAzure.Commands.Common.Properties.Resources.NodeModulesPath); - } - - [PermissionSet(SecurityAction.LinkDemand, Name = "FullTrust")] - public static void LaunchWebPage(string target) - { - ProcessHelper.Start(target); - } - public static X509Certificate2 GetCertificateFromStore(string thumbprint) { Validate.ValidateStringIsNullOrEmpty(thumbprint, "certificate thumbprint"); diff --git a/src/Common/Commands.Profile/Commands.Profile.csproj b/src/Common/Commands.Profile/Commands.Profile.csproj index cbf6d8a784a2..a5b345aca0db 100644 --- a/src/Common/Commands.Profile/Commands.Profile.csproj +++ b/src/Common/Commands.Profile/Commands.Profile.csproj @@ -163,18 +163,18 @@ - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - - Designer PreserveNewest + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + diff --git a/src/Common/Commands.Profile/Subscription/GetAzurePublishSettingsFile.cs b/src/Common/Commands.Profile/Subscription/GetAzurePublishSettingsFile.cs index 3cb69cddae84..92540f3a0340 100644 --- a/src/Common/Commands.Profile/Subscription/GetAzurePublishSettingsFile.cs +++ b/src/Common/Commands.Profile/Subscription/GetAzurePublishSettingsFile.cs @@ -48,7 +48,7 @@ public override void ExecuteCmdlet() { AzureEnvironment environment = ProfileClient.GetEnvironmentOrDefault(Environment); string url = environment.GetPublishSettingsFileUrlWithRealm(Realm); - GeneralUtilities.LaunchWebPage(url); + ProcessHelper.Start(url); if (PassThru) { diff --git a/src/Common/Commands.ResourceManager.Common/AzureRMCmdlet.cs b/src/Common/Commands.ResourceManager.Common/AzureRMCmdlet.cs new file mode 100644 index 000000000000..385914ba3819 --- /dev/null +++ b/src/Common/Commands.ResourceManager.Common/AzureRMCmdlet.cs @@ -0,0 +1,56 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +namespace Microsoft.Azure.Commands.ResourceManager.Common +{ + /// + /// Represents base class for Resource Manager cmdlets + /// + public abstract class AzureRMCmdlet : AzurePSCmdlet + { + /// + /// Static constructor for AzureRMCmdlet. + /// + static AzureRMCmdlet() + { + AzureSession.DataStore = new DiskDataStore(); + } + + /// + /// Gets or sets the global profile for ARM cmdlets. + /// + public static AzureRMProfile Profile { get; set; } + + /// + /// Gets the current default context. + /// + protected override AzureContext DefaultContext + { + get + { + if (Profile == null || Profile.DefaultContext == null) + { + throw new PSInvalidOperationException("Run Login-AzureRMAccount to logic with profile."); + } + + return Profile.DefaultContext; + } + } + } +} diff --git a/src/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj b/src/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj new file mode 100644 index 000000000000..ff1ad1950375 --- /dev/null +++ b/src/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj @@ -0,0 +1,180 @@ + + + + + Debug + AnyCPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252} + Library + Properties + Microsoft.Azure.Commands.ResourceManager.Common + Microsoft.Azure.Commands.ResourceManager.Common + v4.5 + 512 + ..\..\ + true + /assemblyCompareMode:StrongNameIgnoringVersion + + + true + full + false + bin\Debug + DEBUG;TRACE + prompt + 4 + true + true + false + true + + + bin\Release + TRACE;SIGN + true + pdbonly + AnyCPU + bin\Release\Microsoft.Azure.Commands.ResourceManager.Common.dll.CodeAnalysisLog.xml + true + GlobalSuppressions.cs + prompt + MinimumRecommendedRules.ruleset + ;$(ProgramFiles)\Microsoft Visual Studio 12.0\Team Tools\Static Analysis Tools\Rule Sets + ;$(ProgramFiles)\Microsoft Visual Studio 12.0\Team Tools\Static Analysis Tools\FxCop\Rules + true + MSSharedLibKey.snk + true + true + false + true + + + + False + ..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll + + + False + ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll + + + False + ..\..\packages\Microsoft.Azure.Common.Authentication.1.1.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + + + False + ..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll + + + False + ..\..\packages\Microsoft.Azure.Management.Resources.2.18.7-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + + False + ..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + + False + ..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + + False + ..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll + + + False + ..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll + + + False + ..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll + + + False + ..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll + + + ..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll + True + + + ..\..\packages\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll + True + + + ..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.3\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll + True + + + + + + + + False + ..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Extensions.dll + + + False + ..\..\packages\Microsoft.AspNet.WebApi.Client.5.2.2\lib\net45\System.Net.Http.Formatting.dll + + + False + ..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll + + + + + + + + + + + + + + + + + + Common\AzurePSCmdlet.cs + + + Common\AzurePowerShell.cs + + + Common\CmdletExtensions.cs + + + Common\ConversionUtilities.cs + + + Common\DebugStreamTraceListener.cs + + + Common\GeneralUtilities.cs + + + Common\PowerShellUtilities.cs + + + Common\RecordingTracingInterceptor.cs + + + Common\SecureStringExtensions.cs + + + + + Designer + + + + + + + + + + \ No newline at end of file diff --git a/src/Common/Commands.ResourceManager.Common/MSSharedLibKey.snk b/src/Common/Commands.ResourceManager.Common/MSSharedLibKey.snk new file mode 100644 index 000000000000..695f1b38774e Binary files /dev/null and b/src/Common/Commands.ResourceManager.Common/MSSharedLibKey.snk differ diff --git a/src/Common/Commands.ResourceManager.Common/Properties/AssemblyInfo.cs b/src/Common/Commands.ResourceManager.Common/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..abfe416364fb --- /dev/null +++ b/src/Common/Commands.ResourceManager.Common/Properties/AssemblyInfo.cs @@ -0,0 +1,28 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Microsoft Azure PowerShell - Resource Manager Common Library")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Microsoft Azure PowerShell")] +[assembly: AssemblyCopyright("Copyright © Microsoft")] + +[assembly: ComVisible(false)] +[assembly: CLSCompliant(false)] +[assembly: Guid("3819d8a7-c62c-4c47-8ddd-0332d9ce1252")] +[assembly: AssemblyVersion("1.0.0")] +[assembly: AssemblyFileVersion("1.0.0")] \ No newline at end of file diff --git a/src/Common/Commands.ResourceManager.Common/packages.config b/src/Common/Commands.ResourceManager.Common/packages.config new file mode 100644 index 000000000000..3ec82649e831 --- /dev/null +++ b/src/Common/Commands.ResourceManager.Common/packages.config @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj b/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj index bbc91ae7e3b5..f8c43e97852f 100644 --- a/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj +++ b/src/Common/Commands.ScenarioTests.Common/Commands.ScenarioTests.Common.csproj @@ -86,6 +86,7 @@ ..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll + ..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll @@ -139,6 +140,8 @@ + + @@ -154,6 +157,10 @@ {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + diff --git a/src/Common/Commands.ScenarioTests.Common/RMTestBase.cs b/src/Common/Commands.ScenarioTests.Common/RMTestBase.cs new file mode 100644 index 000000000000..4452073f527f --- /dev/null +++ b/src/Common/Commands.ScenarioTests.Common/RMTestBase.cs @@ -0,0 +1,68 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Commands.ResourceManager.Common; + +namespace Microsoft.WindowsAzure.Commands.Test.Utilities.Common +{ + /// + /// Base class for Microsoft Azure PowerShell unit tests. + /// + public abstract class RMTestBase + { + protected AzureRMProfile currentProfile; + + public RMTestBase() + { + BaseSetup(); + } + + /// + /// Initialize the necessary environment for the tests. + /// + public void BaseSetup() + { + currentProfile = new AzureRMProfile(); + var newGuid = Guid.NewGuid(); + currentProfile.DefaultContext = new AzureContext( + new AzureSubscription { Id = newGuid, Name = "test", Environment = EnvironmentName.AzureCloud, Account = "test" }, + new AzureAccount + { + Id = "test", + Type = AzureAccount.AccountType.User, + Properties = new Dictionary + { + {AzureAccount.Property.Subscriptions, newGuid.ToString()} + } + }, + AzureEnvironment.PublicEnvironments[EnvironmentName.AzureCloud], + new AzureTenant { Id = Guid.NewGuid(), Domain = "testdomain.onmicrosoft.com" }); + + AzureRMCmdlet.Profile = currentProfile; + + // Now override AzureSession.DataStore to use the MemoryDataStore + if (AzureSession.DataStore != null && !(AzureSession.DataStore is MemoryDataStore)) + { + AzureSession.DataStore = new MemoryDataStore(); + } + + AzureSession.AuthenticationFactory = new MockTokenAuthenticationFactory(); + } + } +} diff --git a/src/Common/Commands.Common.Test/Common/TestBase.cs b/src/Common/Commands.ScenarioTests.Common/SMTestBase.cs similarity index 93% rename from src/Common/Commands.Common.Test/Common/TestBase.cs rename to src/Common/Commands.ScenarioTests.Common/SMTestBase.cs index 6cd007173c9c..df0ab1125195 100644 --- a/src/Common/Commands.Common.Test/Common/TestBase.cs +++ b/src/Common/Commands.ScenarioTests.Common/SMTestBase.cs @@ -15,22 +15,20 @@ using System; using System.Collections.Generic; using Microsoft.VisualStudio.TestTools.UnitTesting; -using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Common.Authentication.Models; using Microsoft.WindowsAzure.Commands.Common.Test.Mocks; -using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.Azure.Common.Authentication; namespace Microsoft.WindowsAzure.Commands.Test.Utilities.Common { /// - /// Base class for Microsoft Azure PowerShell unit tests. + /// Base class for Microsoft Azure PowerShell Service Management unit tests. /// - public abstract class TestBase + public abstract class SMTestBase { protected AzureSMProfile currentProfile; - public TestBase() + public SMTestBase() { BaseSetup(); } diff --git a/src/ResourceManager.sln b/src/ResourceManager.sln index 4c571e8d213c..f922c4bbdbdd 100644 --- a/src/ResourceManager.sln +++ b/src/ResourceManager.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.30723.0 +# Visual Studio 14 +VisualStudioVersion = 14.0.23107.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8531411A-0137-4E27-9C5E-49E07C245048}" ProjectSection(SolutionItems) = preProject @@ -9,79 +9,89 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution UnitTest.testsettings = UnitTest.testsettings EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common", "Common\Commands.Common\Commands.Common.csproj", "{5EE72C53-1720-4309-B54B-5FB79703195F}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.Storage", "Common\Commands.Common.Storage\Commands.Common.Storage.csproj", "{65C3A86A-716D-4E7D-AB67-1DB00B3BF72D}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.Test", "Common\Commands.Common.Test\Commands.Common.Test.csproj", "{3B48A77B-5956-4A62-9081-92BA04B02B27}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{95C16AED-FD57-42A0-86C3-2CF4300A4817}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManager.Common", "Common\Commands.ResourceManager.Common\Commands.ResourceManager.Common.csproj", "{3819D8A7-C62C-4C47-8DDD-0332D9CE1252}" +EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Resources", "ResourceManager\Resources\Commands.Resources\Commands.Resources.csproj", "{E1F5201D-6067-430E-B303-4E367652991B}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Tags", "ResourceManager\Tags\Commands.Tags\Commands.Tags.csproj", "{2493A8F7-1949-4F29-8D53-9D459046C3B8}" +EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Resources.Test", "ResourceManager\Resources\Commands.Resources.Test\Commands.Resources.Test.csproj", "{4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Profile", "Common\Commands.Profile\Commands.Profile.csproj", "{C60342B1-47D3-4A0E-8081-9B97CE60B7AF}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ScenarioTests.Common", "Common\Commands.ScenarioTests.Common\Commands.ScenarioTests.Common.csproj", "{C1BDA476-A5CC-4394-914D-48B0EC31A710}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Tags", "ResourceManager\Tags\Commands.Tags\Commands.Tags.csproj", "{2493A8F7-1949-4F29-8D53-9D459046C3B8}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManager.Cmdlets", "ResourceManager\ResourceManager\Commands.ResourceManager\Cmdlets\Commands.ResourceManager.Cmdlets.csproj", "{8058D403-06E3-4BED-8924-D166CE303961}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ScenarioTests.Common", "Common\Commands.ScenarioTests.Common\Commands.ScenarioTests.Common.csproj", "{C1BDA476-A5CC-4394-914D-48B0EC31A710}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common", "Common\Commands.Common\Commands.Common.csproj", "{5EE72C53-1720-4309-B54B-5FB79703195F}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Sql", "ResourceManager\Sql\Commands.Sql\Commands.Sql.csproj", "{69ED499E-6F3C-488F-86B8-B74CFDA4D47E}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ApiManagement", "ResourceManager\ApiManagement\Commands.ApiManagement\Commands.ApiManagement.csproj", "{DC0A9742-DF36-48C9-BD2F-68D01AED6257}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManagement.Automation", "ResourceManager\Automation\Commands.Automation\Commands.ResourceManagement.Automation.csproj", "{90DEF35A-F7FF-40D0-B008-F489A4C092DB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.AzureBackup", "ResourceManager\AzureBackup\Commands.AzureBackup\Commands.AzureBackup.csproj", "{6C8D2337-C9D1-4F52-94B3-AB63A19F3453}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Batch", "ResourceManager\AzureBatch\Commands.Batch\Commands.Batch.csproj", "{D470E50A-9607-48D6-A924-4F9F86502704}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.UsageAggregates", "ResourceManager\Commerce\Commands.UsageAggregates\Commands.UsageAggregates.csproj", "{1A131D3A-EAC4-420C-A1C0-5490ED68EF67}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Compute", "ResourceManager\Compute\Commands.Compute\Commands.Compute.csproj", "{52643BD5-6378-49BD-9F6E-DAC9DD8A867B}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.DataFactories", "ResourceManager\DataFactories\Commands.DataFactories\Commands.DataFactories.csproj", "{9577252E-0A6B-4D61-86E8-95F7F309A987}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.DataFactories.Test", "ResourceManager\DataFactories\Commands.DataFactories.Test\Commands.DataFactories.Test.csproj", "{D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Dns", "ResourceManager\Dns\Commands.Dns\Commands.Dns.csproj", "{3CAE1B57-FFEC-4945-A6C5-6E5E8DEA4BA9}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.RedisCache", "ResourceManager\RedisCache\Commands.RedisCache\Commands.RedisCache.csproj", "{C972E3EF-4461-4758-BA31-93E0947B1253}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.HDInsight", "ResourceManager\HDInsight\Commands.HDInsight\Commands.HDInsight.csproj", "{6B7540C5-8AB3-4011-864B-0BE76F282F9E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.RedisCache.Test", "ResourceManager\RedisCache\Commands.RedisCache.Test\Commands.RedisCache.Test.csproj", "{4AE5705F-62CF-461D-B72E-DD9DCD9B3609}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Insights", "ResourceManager\Insights\Commands.Insights\Commands.Insights.csproj", "{DEA446A1-84E2-46CC-B780-EB4AFDE2460E}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.KeyVault", "ResourceManager\KeyVault\Commands.KeyVault\Commands.KeyVault.csproj", "{9FFC40CC-A341-4D0C-A25D-DC6B78EF6C94}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.KeyVault.Test", "ResourceManager\KeyVault\Commands.KeyVault.Test\Commands.KeyVault.Test.csproj", "{080B0477-7E52-4455-90AB-23BD13D1B1CE}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Network", "ResourceManager\Network\Commands.Network\Commands.Network.csproj", "{98CFD96B-A6BC-4F15-AE2C-603FC2B58981}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Sql.Test", "ResourceManager\Sql\Commands.Sql.Test\Commands.Sql.Test.csproj", "{56ED8C97-53B9-4DF6-ACB5-7E6800105BF8}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.OperationalInsights", "ResourceManager\OperationalInsights\Commands.OperationalInsights\Commands.OperationalInsights.csproj", "{5BE35A94-C20F-4659-AA29-9B9AEBCFAF36}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.StreamAnalytics", "ResourceManager\StreamAnalytics\Commands.StreamAnalytics\Commands.StreamAnalytics.csproj", "{F49A314A-A235-47D3-A654-1EC19ACA366C}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.RedisCache", "ResourceManager\RedisCache\Commands.RedisCache\Commands.RedisCache.csproj", "{C972E3EF-4461-4758-BA31-93E0947B1253}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.StreamAnalytics.Test", "ResourceManager\StreamAnalytics\Commands.StreamAnalytics.Test\Commands.StreamAnalytics.Test.csproj", "{7E6683BE-ECFF-4709-89EB-1325E9E70512}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.SiteRecovery", "ResourceManager\SiteRecovery\Commands.SiteRecovery\Commands.SiteRecovery.csproj", "{7C879645-31EE-4A78-AD81-5512300FA104}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Insights", "ResourceManager\Insights\Commands.Insights\Commands.Insights.csproj", "{DEA446A1-84E2-46CC-B780-EB4AFDE2460E}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Sql", "ResourceManager\Sql\Commands.Sql\Commands.Sql.csproj", "{69ED499E-6F3C-488F-86B8-B74CFDA4D47E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManagement.Automation.Test", "ResourceManager\Automation\Commands.Automation.Test\Commands.ResourceManagement.Automation.Test.csproj", "{59D1B5DC-9175-43EC-90C6-CBA601B3565F}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Management.Storage", "ResourceManager\Storage\Commands.Management.Storage\Commands.Management.Storage.csproj", "{A50AB133-5C04-4A17-9054-F8343683EC23}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Websites", "ResourceManager\Websites\Commands.Websites\Commands.Websites.csproj", "{80A92297-7C92-456B-8EE7-9FB6CE30149D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.StreamAnalytics", "ResourceManager\StreamAnalytics\Commands.StreamAnalytics\Commands.StreamAnalytics.csproj", "{F49A314A-A235-47D3-A654-1EC19ACA366C}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Websites.Test", "ResourceManager\Websites\Commands.Websites.Test\Commands.Websites.Test.csproj", "{13E031E4-8A43-4B87-9D72-D70180C31C11}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.TrafficManager2", "ResourceManager\TrafficManager\Commands.TrafficManager2\Commands.TrafficManager2.csproj", "{270CBB5F-BB8A-4E33-B35B-95698E607D97}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Insights.Test", "ResourceManager\Insights\Commands.Insights.Test\Commands.Insights.Test.csproj", "{469F20E0-9D40-41AD-94C3-B47AD15A4C00}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Websites", "ResourceManager\Websites\Commands.Websites\Commands.Websites.csproj", "{80A92297-7C92-456B-8EE7-9FB6CE30149D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManagement.Automation", "ResourceManager\Automation\Commands.Automation\Commands.ResourceManagement.Automation.csproj", "{90DEF35A-F7FF-40D0-B008-F489A4C092DB}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Common.Storage", "Common\Commands.Common.Storage\Commands.Common.Storage.csproj", "{65C3A86A-716D-4E7D-AB67-1DB00B3BF72D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Dns", "ResourceManager\Dns\Commands.Dns\Commands.Dns.csproj", "{3CAE1B57-FFEC-4945-A6C5-6E5E8DEA4BA9}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Profile", "Common\Commands.Profile\Commands.Profile.csproj", "{C60342B1-47D3-4A0E-8081-9B97CE60B7AF}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Dns.Test", "ResourceManager\Dns\Commands.Dns.Test\Commands.Dns.Test.csproj", "{133561EC-99AF-4ADC-AF41-39C4D3AD323B}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Storage", "ServiceManagement\Storage\Commands.Storage\Commands.Storage.csproj", "{08CF7DA7-0392-4A19-B79B-E1FF67CDB81A}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.HDInsight", "ResourceManager\HDInsight\Commands.HDInsight\Commands.HDInsight.csproj", "{6B7540C5-8AB3-4011-864B-0BE76F282F9E}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ApiManagement.Test", "ResourceManager\ApiManagement\Commands.ApiManagement.Test\Commands.ApiManagement.Test.csproj", "{BEC9ECE9-A3D6-4B24-A682-1FA890647D9D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.TrafficManager2.Test", "ResourceManager\TrafficManager\Commands.TrafficManager2.Test\Commands.TrafficManager2.Test.csproj", "{5764A3A4-586C-4536-8481-13007CAC111B}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManagement.Automation.Test", "ResourceManager\Automation\Commands.Automation.Test\Commands.ResourceManagement.Automation.Test.csproj", "{59D1B5DC-9175-43EC-90C6-CBA601B3565F}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.TrafficManager2", "ResourceManager\TrafficManager\Commands.TrafficManager2\Commands.TrafficManager2.csproj", "{270CBB5F-BB8A-4E33-B35B-95698E607D97}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.AzureBackup.Test", "ResourceManager\AzureBackup\Commands.AzureBackup.Test\Commands.AzureBackup.Test.csproj", "{678AE95D-2364-47D7-888C-3FFA6D412CC8}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Management.Storage", "ResourceManager\Storage\Commands.Management.Storage\Commands.Management.Storage.csproj", "{A50AB133-5C04-4A17-9054-F8343683EC23}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ApiManagement.ServiceManagement", "ResourceManager\ApiManagement\Commands.ApiManagement.ServiceManagement\Commands.ApiManagement.ServiceManagement.csproj", "{ED8BA708-AF42-4C08-9F4E-DAA1037797D5}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Management.Storage.Test", "ResourceManager\Storage\Commands.Management.Storage.Test\Commands.Management.Storage.Test.csproj", "{7D1D3B56-4EB4-4819-86FD-43330DED8EE7}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ApiManagement.ServiceManagement.Test", "ResourceManager\ApiManagement\Commands.SMAPI.Test\Commands.ApiManagement.ServiceManagement.Test.csproj", "{6448E795-3D02-4BDD-B0C7-AD0A2AFE3C8B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.HDInsight.Test", "ResourceManager\HDInsight\Commands.HDInsight.Test\Commands.HDInsight.Test.csproj", "{5FBB9D19-B365-4C97-BEFF-BBD5506A6D25}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Batch.Test", "ResourceManager\AzureBatch\Commands.Batch.Test\Commands.Batch.Test.csproj", "{F4ABAD68-64A5-4B23-B09C-42559A7524DE}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ApiManagement.ServiceManagement", "ResourceManager\ApiManagement\Commands.ApiManagement.ServiceManagement\Commands.ApiManagement.ServiceManagement.csproj", "{ED8BA708-AF42-4C08-9F4E-DAA1037797D5}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.DataFactories.Test", "ResourceManager\DataFactories\Commands.DataFactories.Test\Commands.DataFactories.Test.csproj", "{D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ApiManagement", "ResourceManager\ApiManagement\Commands.ApiManagement\Commands.ApiManagement.csproj", "{DC0A9742-DF36-48C9-BD2F-68D01AED6257}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Dns.Test", "ResourceManager\Dns\Commands.Dns.Test\Commands.Dns.Test.csproj", "{133561EC-99AF-4ADC-AF41-39C4D3AD323B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.ResourceManager.Cmdlets", "ResourceManager\ResourceManager\Commands.ResourceManager\Cmdlets\Commands.ResourceManager.Cmdlets.csproj", "{8058D403-06E3-4BED-8924-D166CE303961}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.HDInsight.Test", "ResourceManager\HDInsight\Commands.HDInsight.Test\Commands.HDInsight.Test.csproj", "{5FBB9D19-B365-4C97-BEFF-BBD5506A6D25}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Insights.Test", "ResourceManager\Insights\Commands.Insights.Test\Commands.Insights.Test.csproj", "{469F20E0-9D40-41AD-94C3-B47AD15A4C00}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.Test.Utilities", "ServiceManagement\Services\Commands.Test.Utilities\Commands.Test.Utilities.csproj", "{BC420543-C04E-4BF3-96E1-CD81B823BDD7}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Commands.KeyVault.Test", "ResourceManager\KeyVault\Commands.KeyVault.Test\Commands.KeyVault.Test.csproj", "{080B0477-7E52-4455-90AB-23BD13D1B1CE}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -89,170 +99,186 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5EE72C53-1720-4309-B54B-5FB79703195F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5EE72C53-1720-4309-B54B-5FB79703195F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5EE72C53-1720-4309-B54B-5FB79703195F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5EE72C53-1720-4309-B54B-5FB79703195F}.Release|Any CPU.Build.0 = Release|Any CPU - {65C3A86A-716D-4E7D-AB67-1DB00B3BF72D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {65C3A86A-716D-4E7D-AB67-1DB00B3BF72D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {65C3A86A-716D-4E7D-AB67-1DB00B3BF72D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {65C3A86A-716D-4E7D-AB67-1DB00B3BF72D}.Release|Any CPU.Build.0 = Release|Any CPU - {3B48A77B-5956-4A62-9081-92BA04B02B27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3B48A77B-5956-4A62-9081-92BA04B02B27}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3B48A77B-5956-4A62-9081-92BA04B02B27}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3B48A77B-5956-4A62-9081-92BA04B02B27}.Release|Any CPU.Build.0 = Release|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3819D8A7-C62C-4C47-8DDD-0332D9CE1252}.Release|Any CPU.Build.0 = Release|Any CPU {E1F5201D-6067-430E-B303-4E367652991B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E1F5201D-6067-430E-B303-4E367652991B}.Debug|Any CPU.Build.0 = Debug|Any CPU {E1F5201D-6067-430E-B303-4E367652991B}.Release|Any CPU.ActiveCfg = Release|Any CPU {E1F5201D-6067-430E-B303-4E367652991B}.Release|Any CPU.Build.0 = Release|Any CPU - {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}.Release|Any CPU.Build.0 = Release|Any CPU - {C60342B1-47D3-4A0E-8081-9B97CE60B7AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C60342B1-47D3-4A0E-8081-9B97CE60B7AF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C60342B1-47D3-4A0E-8081-9B97CE60B7AF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C60342B1-47D3-4A0E-8081-9B97CE60B7AF}.Release|Any CPU.Build.0 = Release|Any CPU {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Debug|Any CPU.Build.0 = Debug|Any CPU {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Release|Any CPU.ActiveCfg = Release|Any CPU {2493A8F7-1949-4F29-8D53-9D459046C3B8}.Release|Any CPU.Build.0 = Release|Any CPU + {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7}.Release|Any CPU.Build.0 = Release|Any CPU {C1BDA476-A5CC-4394-914D-48B0EC31A710}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C1BDA476-A5CC-4394-914D-48B0EC31A710}.Debug|Any CPU.Build.0 = Debug|Any CPU {C1BDA476-A5CC-4394-914D-48B0EC31A710}.Release|Any CPU.ActiveCfg = Release|Any CPU {C1BDA476-A5CC-4394-914D-48B0EC31A710}.Release|Any CPU.Build.0 = Release|Any CPU - {69ED499E-6F3C-488F-86B8-B74CFDA4D47E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {69ED499E-6F3C-488F-86B8-B74CFDA4D47E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {69ED499E-6F3C-488F-86B8-B74CFDA4D47E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {69ED499E-6F3C-488F-86B8-B74CFDA4D47E}.Release|Any CPU.Build.0 = Release|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.Build.0 = Release|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5EE72C53-1720-4309-B54B-5FB79703195F}.Release|Any CPU.Build.0 = Release|Any CPU + {DC0A9742-DF36-48C9-BD2F-68D01AED6257}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DC0A9742-DF36-48C9-BD2F-68D01AED6257}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DC0A9742-DF36-48C9-BD2F-68D01AED6257}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DC0A9742-DF36-48C9-BD2F-68D01AED6257}.Release|Any CPU.Build.0 = Release|Any CPU + {90DEF35A-F7FF-40D0-B008-F489A4C092DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {90DEF35A-F7FF-40D0-B008-F489A4C092DB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {90DEF35A-F7FF-40D0-B008-F489A4C092DB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {90DEF35A-F7FF-40D0-B008-F489A4C092DB}.Release|Any CPU.Build.0 = Release|Any CPU + {6C8D2337-C9D1-4F52-94B3-AB63A19F3453}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6C8D2337-C9D1-4F52-94B3-AB63A19F3453}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6C8D2337-C9D1-4F52-94B3-AB63A19F3453}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6C8D2337-C9D1-4F52-94B3-AB63A19F3453}.Release|Any CPU.Build.0 = Release|Any CPU + {D470E50A-9607-48D6-A924-4F9F86502704}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D470E50A-9607-48D6-A924-4F9F86502704}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D470E50A-9607-48D6-A924-4F9F86502704}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D470E50A-9607-48D6-A924-4F9F86502704}.Release|Any CPU.Build.0 = Release|Any CPU + {1A131D3A-EAC4-420C-A1C0-5490ED68EF67}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1A131D3A-EAC4-420C-A1C0-5490ED68EF67}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1A131D3A-EAC4-420C-A1C0-5490ED68EF67}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1A131D3A-EAC4-420C-A1C0-5490ED68EF67}.Release|Any CPU.Build.0 = Release|Any CPU + {52643BD5-6378-49BD-9F6E-DAC9DD8A867B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {52643BD5-6378-49BD-9F6E-DAC9DD8A867B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {52643BD5-6378-49BD-9F6E-DAC9DD8A867B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {52643BD5-6378-49BD-9F6E-DAC9DD8A867B}.Release|Any CPU.Build.0 = Release|Any CPU {9577252E-0A6B-4D61-86E8-95F7F309A987}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9577252E-0A6B-4D61-86E8-95F7F309A987}.Debug|Any CPU.Build.0 = Debug|Any CPU {9577252E-0A6B-4D61-86E8-95F7F309A987}.Release|Any CPU.ActiveCfg = Release|Any CPU {9577252E-0A6B-4D61-86E8-95F7F309A987}.Release|Any CPU.Build.0 = Release|Any CPU - {D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B}.Release|Any CPU.Build.0 = Release|Any CPU - {C972E3EF-4461-4758-BA31-93E0947B1253}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C972E3EF-4461-4758-BA31-93E0947B1253}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C972E3EF-4461-4758-BA31-93E0947B1253}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C972E3EF-4461-4758-BA31-93E0947B1253}.Release|Any CPU.Build.0 = Release|Any CPU - {4AE5705F-62CF-461D-B72E-DD9DCD9B3609}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4AE5705F-62CF-461D-B72E-DD9DCD9B3609}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4AE5705F-62CF-461D-B72E-DD9DCD9B3609}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4AE5705F-62CF-461D-B72E-DD9DCD9B3609}.Release|Any CPU.Build.0 = Release|Any CPU + {3CAE1B57-FFEC-4945-A6C5-6E5E8DEA4BA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3CAE1B57-FFEC-4945-A6C5-6E5E8DEA4BA9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3CAE1B57-FFEC-4945-A6C5-6E5E8DEA4BA9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3CAE1B57-FFEC-4945-A6C5-6E5E8DEA4BA9}.Release|Any CPU.Build.0 = Release|Any CPU + {6B7540C5-8AB3-4011-864B-0BE76F282F9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6B7540C5-8AB3-4011-864B-0BE76F282F9E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6B7540C5-8AB3-4011-864B-0BE76F282F9E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6B7540C5-8AB3-4011-864B-0BE76F282F9E}.Release|Any CPU.Build.0 = Release|Any CPU + {DEA446A1-84E2-46CC-B780-EB4AFDE2460E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DEA446A1-84E2-46CC-B780-EB4AFDE2460E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DEA446A1-84E2-46CC-B780-EB4AFDE2460E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DEA446A1-84E2-46CC-B780-EB4AFDE2460E}.Release|Any CPU.Build.0 = Release|Any CPU {9FFC40CC-A341-4D0C-A25D-DC6B78EF6C94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9FFC40CC-A341-4D0C-A25D-DC6B78EF6C94}.Debug|Any CPU.Build.0 = Debug|Any CPU {9FFC40CC-A341-4D0C-A25D-DC6B78EF6C94}.Release|Any CPU.ActiveCfg = Release|Any CPU {9FFC40CC-A341-4D0C-A25D-DC6B78EF6C94}.Release|Any CPU.Build.0 = Release|Any CPU - {080B0477-7E52-4455-90AB-23BD13D1B1CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {080B0477-7E52-4455-90AB-23BD13D1B1CE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {080B0477-7E52-4455-90AB-23BD13D1B1CE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {080B0477-7E52-4455-90AB-23BD13D1B1CE}.Release|Any CPU.Build.0 = Release|Any CPU - {56ED8C97-53B9-4DF6-ACB5-7E6800105BF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {56ED8C97-53B9-4DF6-ACB5-7E6800105BF8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {56ED8C97-53B9-4DF6-ACB5-7E6800105BF8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {56ED8C97-53B9-4DF6-ACB5-7E6800105BF8}.Release|Any CPU.Build.0 = Release|Any CPU + {98CFD96B-A6BC-4F15-AE2C-603FC2B58981}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {98CFD96B-A6BC-4F15-AE2C-603FC2B58981}.Debug|Any CPU.Build.0 = Debug|Any CPU + {98CFD96B-A6BC-4F15-AE2C-603FC2B58981}.Release|Any CPU.ActiveCfg = Release|Any CPU + {98CFD96B-A6BC-4F15-AE2C-603FC2B58981}.Release|Any CPU.Build.0 = Release|Any CPU + {5BE35A94-C20F-4659-AA29-9B9AEBCFAF36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5BE35A94-C20F-4659-AA29-9B9AEBCFAF36}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5BE35A94-C20F-4659-AA29-9B9AEBCFAF36}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5BE35A94-C20F-4659-AA29-9B9AEBCFAF36}.Release|Any CPU.Build.0 = Release|Any CPU + {C972E3EF-4461-4758-BA31-93E0947B1253}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C972E3EF-4461-4758-BA31-93E0947B1253}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C972E3EF-4461-4758-BA31-93E0947B1253}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C972E3EF-4461-4758-BA31-93E0947B1253}.Release|Any CPU.Build.0 = Release|Any CPU + {7C879645-31EE-4A78-AD81-5512300FA104}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7C879645-31EE-4A78-AD81-5512300FA104}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7C879645-31EE-4A78-AD81-5512300FA104}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7C879645-31EE-4A78-AD81-5512300FA104}.Release|Any CPU.Build.0 = Release|Any CPU + {69ED499E-6F3C-488F-86B8-B74CFDA4D47E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {69ED499E-6F3C-488F-86B8-B74CFDA4D47E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {69ED499E-6F3C-488F-86B8-B74CFDA4D47E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {69ED499E-6F3C-488F-86B8-B74CFDA4D47E}.Release|Any CPU.Build.0 = Release|Any CPU + {A50AB133-5C04-4A17-9054-F8343683EC23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A50AB133-5C04-4A17-9054-F8343683EC23}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A50AB133-5C04-4A17-9054-F8343683EC23}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A50AB133-5C04-4A17-9054-F8343683EC23}.Release|Any CPU.Build.0 = Release|Any CPU {F49A314A-A235-47D3-A654-1EC19ACA366C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F49A314A-A235-47D3-A654-1EC19ACA366C}.Debug|Any CPU.Build.0 = Debug|Any CPU {F49A314A-A235-47D3-A654-1EC19ACA366C}.Release|Any CPU.ActiveCfg = Release|Any CPU {F49A314A-A235-47D3-A654-1EC19ACA366C}.Release|Any CPU.Build.0 = Release|Any CPU - {7E6683BE-ECFF-4709-89EB-1325E9E70512}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7E6683BE-ECFF-4709-89EB-1325E9E70512}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7E6683BE-ECFF-4709-89EB-1325E9E70512}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7E6683BE-ECFF-4709-89EB-1325E9E70512}.Release|Any CPU.Build.0 = Release|Any CPU - {DEA446A1-84E2-46CC-B780-EB4AFDE2460E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DEA446A1-84E2-46CC-B780-EB4AFDE2460E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DEA446A1-84E2-46CC-B780-EB4AFDE2460E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DEA446A1-84E2-46CC-B780-EB4AFDE2460E}.Release|Any CPU.Build.0 = Release|Any CPU - {59D1B5DC-9175-43EC-90C6-CBA601B3565F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {59D1B5DC-9175-43EC-90C6-CBA601B3565F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {59D1B5DC-9175-43EC-90C6-CBA601B3565F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {59D1B5DC-9175-43EC-90C6-CBA601B3565F}.Release|Any CPU.Build.0 = Release|Any CPU + {270CBB5F-BB8A-4E33-B35B-95698E607D97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {270CBB5F-BB8A-4E33-B35B-95698E607D97}.Debug|Any CPU.Build.0 = Debug|Any CPU + {270CBB5F-BB8A-4E33-B35B-95698E607D97}.Release|Any CPU.ActiveCfg = Release|Any CPU + {270CBB5F-BB8A-4E33-B35B-95698E607D97}.Release|Any CPU.Build.0 = Release|Any CPU {80A92297-7C92-456B-8EE7-9FB6CE30149D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {80A92297-7C92-456B-8EE7-9FB6CE30149D}.Debug|Any CPU.Build.0 = Debug|Any CPU {80A92297-7C92-456B-8EE7-9FB6CE30149D}.Release|Any CPU.ActiveCfg = Release|Any CPU {80A92297-7C92-456B-8EE7-9FB6CE30149D}.Release|Any CPU.Build.0 = Release|Any CPU - {13E031E4-8A43-4B87-9D72-D70180C31C11}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {13E031E4-8A43-4B87-9D72-D70180C31C11}.Debug|Any CPU.Build.0 = Debug|Any CPU - {13E031E4-8A43-4B87-9D72-D70180C31C11}.Release|Any CPU.ActiveCfg = Release|Any CPU - {13E031E4-8A43-4B87-9D72-D70180C31C11}.Release|Any CPU.Build.0 = Release|Any CPU - {469F20E0-9D40-41AD-94C3-B47AD15A4C00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {469F20E0-9D40-41AD-94C3-B47AD15A4C00}.Debug|Any CPU.Build.0 = Debug|Any CPU - {469F20E0-9D40-41AD-94C3-B47AD15A4C00}.Release|Any CPU.ActiveCfg = Release|Any CPU - {469F20E0-9D40-41AD-94C3-B47AD15A4C00}.Release|Any CPU.Build.0 = Release|Any CPU - {90DEF35A-F7FF-40D0-B008-F489A4C092DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {90DEF35A-F7FF-40D0-B008-F489A4C092DB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {90DEF35A-F7FF-40D0-B008-F489A4C092DB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {90DEF35A-F7FF-40D0-B008-F489A4C092DB}.Release|Any CPU.Build.0 = Release|Any CPU - {3CAE1B57-FFEC-4945-A6C5-6E5E8DEA4BA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3CAE1B57-FFEC-4945-A6C5-6E5E8DEA4BA9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3CAE1B57-FFEC-4945-A6C5-6E5E8DEA4BA9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3CAE1B57-FFEC-4945-A6C5-6E5E8DEA4BA9}.Release|Any CPU.Build.0 = Release|Any CPU + {65C3A86A-716D-4E7D-AB67-1DB00B3BF72D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {65C3A86A-716D-4E7D-AB67-1DB00B3BF72D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {65C3A86A-716D-4E7D-AB67-1DB00B3BF72D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {65C3A86A-716D-4E7D-AB67-1DB00B3BF72D}.Release|Any CPU.Build.0 = Release|Any CPU + {C60342B1-47D3-4A0E-8081-9B97CE60B7AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C60342B1-47D3-4A0E-8081-9B97CE60B7AF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C60342B1-47D3-4A0E-8081-9B97CE60B7AF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C60342B1-47D3-4A0E-8081-9B97CE60B7AF}.Release|Any CPU.Build.0 = Release|Any CPU + {08CF7DA7-0392-4A19-B79B-E1FF67CDB81A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {08CF7DA7-0392-4A19-B79B-E1FF67CDB81A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {08CF7DA7-0392-4A19-B79B-E1FF67CDB81A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {08CF7DA7-0392-4A19-B79B-E1FF67CDB81A}.Release|Any CPU.Build.0 = Release|Any CPU + {BEC9ECE9-A3D6-4B24-A682-1FA890647D9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BEC9ECE9-A3D6-4B24-A682-1FA890647D9D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BEC9ECE9-A3D6-4B24-A682-1FA890647D9D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BEC9ECE9-A3D6-4B24-A682-1FA890647D9D}.Release|Any CPU.Build.0 = Release|Any CPU + {59D1B5DC-9175-43EC-90C6-CBA601B3565F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {59D1B5DC-9175-43EC-90C6-CBA601B3565F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {59D1B5DC-9175-43EC-90C6-CBA601B3565F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {59D1B5DC-9175-43EC-90C6-CBA601B3565F}.Release|Any CPU.Build.0 = Release|Any CPU + {678AE95D-2364-47D7-888C-3FFA6D412CC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {678AE95D-2364-47D7-888C-3FFA6D412CC8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {678AE95D-2364-47D7-888C-3FFA6D412CC8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {678AE95D-2364-47D7-888C-3FFA6D412CC8}.Release|Any CPU.Build.0 = Release|Any CPU + {ED8BA708-AF42-4C08-9F4E-DAA1037797D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ED8BA708-AF42-4C08-9F4E-DAA1037797D5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ED8BA708-AF42-4C08-9F4E-DAA1037797D5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ED8BA708-AF42-4C08-9F4E-DAA1037797D5}.Release|Any CPU.Build.0 = Release|Any CPU + {6448E795-3D02-4BDD-B0C7-AD0A2AFE3C8B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6448E795-3D02-4BDD-B0C7-AD0A2AFE3C8B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6448E795-3D02-4BDD-B0C7-AD0A2AFE3C8B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6448E795-3D02-4BDD-B0C7-AD0A2AFE3C8B}.Release|Any CPU.Build.0 = Release|Any CPU + {F4ABAD68-64A5-4B23-B09C-42559A7524DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F4ABAD68-64A5-4B23-B09C-42559A7524DE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F4ABAD68-64A5-4B23-B09C-42559A7524DE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F4ABAD68-64A5-4B23-B09C-42559A7524DE}.Release|Any CPU.Build.0 = Release|Any CPU + {D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B}.Release|Any CPU.Build.0 = Release|Any CPU {133561EC-99AF-4ADC-AF41-39C4D3AD323B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {133561EC-99AF-4ADC-AF41-39C4D3AD323B}.Debug|Any CPU.Build.0 = Debug|Any CPU {133561EC-99AF-4ADC-AF41-39C4D3AD323B}.Release|Any CPU.ActiveCfg = Release|Any CPU {133561EC-99AF-4ADC-AF41-39C4D3AD323B}.Release|Any CPU.Build.0 = Release|Any CPU - {6B7540C5-8AB3-4011-864B-0BE76F282F9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6B7540C5-8AB3-4011-864B-0BE76F282F9E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6B7540C5-8AB3-4011-864B-0BE76F282F9E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6B7540C5-8AB3-4011-864B-0BE76F282F9E}.Release|Any CPU.Build.0 = Release|Any CPU - {5764A3A4-586C-4536-8481-13007CAC111B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5764A3A4-586C-4536-8481-13007CAC111B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5764A3A4-586C-4536-8481-13007CAC111B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5764A3A4-586C-4536-8481-13007CAC111B}.Release|Any CPU.Build.0 = Release|Any CPU - {270CBB5F-BB8A-4E33-B35B-95698E607D97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {270CBB5F-BB8A-4E33-B35B-95698E607D97}.Debug|Any CPU.Build.0 = Debug|Any CPU - {270CBB5F-BB8A-4E33-B35B-95698E607D97}.Release|Any CPU.ActiveCfg = Release|Any CPU - {270CBB5F-BB8A-4E33-B35B-95698E607D97}.Release|Any CPU.Build.0 = Release|Any CPU - {A50AB133-5C04-4A17-9054-F8343683EC23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A50AB133-5C04-4A17-9054-F8343683EC23}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A50AB133-5C04-4A17-9054-F8343683EC23}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A50AB133-5C04-4A17-9054-F8343683EC23}.Release|Any CPU.Build.0 = Release|Any CPU - {7D1D3B56-4EB4-4819-86FD-43330DED8EE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7D1D3B56-4EB4-4819-86FD-43330DED8EE7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7D1D3B56-4EB4-4819-86FD-43330DED8EE7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7D1D3B56-4EB4-4819-86FD-43330DED8EE7}.Release|Any CPU.Build.0 = Release|Any CPU {5FBB9D19-B365-4C97-BEFF-BBD5506A6D25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {5FBB9D19-B365-4C97-BEFF-BBD5506A6D25}.Debug|Any CPU.Build.0 = Debug|Any CPU {5FBB9D19-B365-4C97-BEFF-BBD5506A6D25}.Release|Any CPU.ActiveCfg = Release|Any CPU {5FBB9D19-B365-4C97-BEFF-BBD5506A6D25}.Release|Any CPU.Build.0 = Release|Any CPU - {ED8BA708-AF42-4C08-9F4E-DAA1037797D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {ED8BA708-AF42-4C08-9F4E-DAA1037797D5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {ED8BA708-AF42-4C08-9F4E-DAA1037797D5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {ED8BA708-AF42-4C08-9F4E-DAA1037797D5}.Release|Any CPU.Build.0 = Release|Any CPU - {DC0A9742-DF36-48C9-BD2F-68D01AED6257}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DC0A9742-DF36-48C9-BD2F-68D01AED6257}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DC0A9742-DF36-48C9-BD2F-68D01AED6257}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DC0A9742-DF36-48C9-BD2F-68D01AED6257}.Release|Any CPU.Build.0 = Release|Any CPU - {8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8058D403-06E3-4BED-8924-D166CE303961}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8058D403-06E3-4BED-8924-D166CE303961}.Release|Any CPU.Build.0 = Release|Any CPU - {BC420543-C04E-4BF3-96E1-CD81B823BDD7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {BC420543-C04E-4BF3-96E1-CD81B823BDD7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BC420543-C04E-4BF3-96E1-CD81B823BDD7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {BC420543-C04E-4BF3-96E1-CD81B823BDD7}.Release|Any CPU.Build.0 = Release|Any CPU + {469F20E0-9D40-41AD-94C3-B47AD15A4C00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {469F20E0-9D40-41AD-94C3-B47AD15A4C00}.Debug|Any CPU.Build.0 = Debug|Any CPU + {469F20E0-9D40-41AD-94C3-B47AD15A4C00}.Release|Any CPU.ActiveCfg = Release|Any CPU + {469F20E0-9D40-41AD-94C3-B47AD15A4C00}.Release|Any CPU.Build.0 = Release|Any CPU + {080B0477-7E52-4455-90AB-23BD13D1B1CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {080B0477-7E52-4455-90AB-23BD13D1B1CE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {080B0477-7E52-4455-90AB-23BD13D1B1CE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {080B0477-7E52-4455-90AB-23BD13D1B1CE}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {3B48A77B-5956-4A62-9081-92BA04B02B27} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {4C2FE49A-09E1-4979-AD46-CD64FD04C8F7} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {C1BDA476-A5CC-4394-914D-48B0EC31A710} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {4AE5705F-62CF-461D-B72E-DD9DCD9B3609} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {080B0477-7E52-4455-90AB-23BD13D1B1CE} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {56ED8C97-53B9-4DF6-ACB5-7E6800105BF8} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {7E6683BE-ECFF-4709-89EB-1325E9E70512} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {BEC9ECE9-A3D6-4B24-A682-1FA890647D9D} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {59D1B5DC-9175-43EC-90C6-CBA601B3565F} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {13E031E4-8A43-4B87-9D72-D70180C31C11} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {469F20E0-9D40-41AD-94C3-B47AD15A4C00} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {678AE95D-2364-47D7-888C-3FFA6D412CC8} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {6448E795-3D02-4BDD-B0C7-AD0A2AFE3C8B} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {F4ABAD68-64A5-4B23-B09C-42559A7524DE} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {D4EDAD6F-6A1D-4295-9A88-CD3F69EAD42B} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {133561EC-99AF-4ADC-AF41-39C4D3AD323B} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {5764A3A4-586C-4536-8481-13007CAC111B} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {7D1D3B56-4EB4-4819-86FD-43330DED8EE7} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} {5FBB9D19-B365-4C97-BEFF-BBD5506A6D25} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} - {BC420543-C04E-4BF3-96E1-CD81B823BDD7} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {469F20E0-9D40-41AD-94C3-B47AD15A4C00} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} + {080B0477-7E52-4455-90AB-23BD13D1B1CE} = {95C16AED-FD57-42A0-86C3-2CF4300A4817} EndGlobalSection EndGlobal diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/ApiManagementClient.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/ApiManagementClient.cs index 7578a57daffb..615e64301fb6 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/ApiManagementClient.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/ApiManagementClient.cs @@ -43,7 +43,7 @@ public class ApiManagementClient internal const string PeriodPattern = "^(?<" + PeriodGroupName + ">[DdMmYy]{1})(?<" + ValueGroupName + @">\d+)$"; static readonly Regex PeriodRegex = new Regex(PeriodPattern, RegexOptions.Compiled); - private readonly AzureSMProfile _AzureProfile; + private readonly AzureContext _context; private Management.ApiManagement.ApiManagementClient _client; static ApiManagementClient() @@ -155,14 +155,14 @@ private static string FormatPeriod(PeriodContract notificationPeriod) return string.Format(format, notificationPeriod.Interval.ToString()[0], notificationPeriod.Value); } - public ApiManagementClient(AzureSMProfile AzureSMProfile) + public ApiManagementClient(AzureContext context) { - if (AzureSMProfile == null) + if (context == null) { throw new ArgumentNullException("AzureProfile"); } - _AzureProfile = AzureSMProfile; + _context = context; _client = CreateClient(); } @@ -175,7 +175,7 @@ private IApiManagementClient Client private Management.ApiManagement.ApiManagementClient CreateClient() { return AzureSession.ClientFactory.CreateClient( - _AzureProfile, + _context, AzureEnvironment.Endpoint.ResourceManager); } 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 8dae175c5edc..eaa3f664400f 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands.ApiManagement.ServiceManagement.csproj +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands.ApiManagement.ServiceManagement.csproj @@ -233,9 +233,9 @@ {65C3A86A-716D-4E7D-AB67-1DB00B3BF72D} Commands.Common.Storage - - {5EE72C53-1720-4309-B54B-5FB79703195F} - Commands.Common + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/AzureApiManagementCmdletBase.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/AzureApiManagementCmdletBase.cs index 2b99db667ddf..b1b19022cc44 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/AzureApiManagementCmdletBase.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/AzureApiManagementCmdletBase.cs @@ -18,9 +18,10 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Commands using System; using System.Management.Automation; using Microsoft.Azure.Commands.ApiManagement.ServiceManagement; + using ResourceManager.Common; using Microsoft.WindowsAzure.Commands.Utilities.Common; - abstract public class AzureApiManagementCmdletBase : AzureSMCmdlet + abstract public class AzureApiManagementCmdletBase : AzureRMCmdlet { protected static TimeSpan LongRunningOperationDefaultTimeout = TimeSpan.FromMinutes(1); @@ -32,7 +33,7 @@ public ApiManagementClient Client { if (_client == null) { - _client = new ApiManagementClient(Profile); + _client = new ApiManagementClient(DefaultContext); } return _client; } @@ -44,7 +45,7 @@ public ApiManagementClient Client public abstract void ExecuteApiManagementCmdlet(); - public override void ExecuteCmdlet() + protected override void ProcessRecord() { try { diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/ScenarioTests/ApiManagementTests.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/ScenarioTests/ApiManagementTests.cs index 9c14e2e67d46..536a618a3072 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/ScenarioTests/ApiManagementTests.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/ScenarioTests/ApiManagementTests.cs @@ -22,11 +22,12 @@ namespace Microsoft.Azure.Commands.ApiManagement.Test.ScenarioTests using Microsoft.Azure.Test; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.WindowsAzure.Commands.ScenarioTest; + using WindowsAzure.Commands.Test.Utilities.Common; using Microsoft.WindowsAzure.Management; using Microsoft.WindowsAzure.Management.Storage; using Xunit; - public class ApiManagementTests + public class ApiManagementTests : RMTestBase { private readonly EnvironmentSetupHelper _helper; @@ -51,7 +52,6 @@ protected void SetupManagementClients() galaryClient, authorizationManagementClient, managementClient, - //storageManagementClient, armStorageManagementClient); } diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/ApiManagementClient.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/ApiManagementClient.cs index 717799025150..6201aca863b3 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/ApiManagementClient.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/ApiManagementClient.cs @@ -27,17 +27,17 @@ namespace Microsoft.Azure.Commands.ApiManagement public class ApiManagementClient { - private readonly AzureSMProfile _AzureProfile; + private readonly AzureContext _context; private Management.ApiManagement.ApiManagementClient _client; - public ApiManagementClient(AzureSMProfile AzureSMProfile) + public ApiManagementClient(AzureContext context) { - if (AzureSMProfile == null) + if (context == null) { throw new ArgumentNullException("AzureProfile"); } - _AzureProfile = AzureSMProfile; + _context = context; } private IApiManagementClient Client @@ -48,7 +48,7 @@ private IApiManagementClient Client { _client = AzureSession.ClientFactory.CreateClient( - _AzureProfile, + _context, AzureEnvironment.Endpoint.ResourceManager); } diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj index b6ea331ddacc..62f41d1e52e2 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands.ApiManagement.csproj @@ -206,6 +206,10 @@ {5EE72C53-1720-4309-B54B-5FB79703195F} Commands.Common + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/AddAzureApiManagementRegion.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/AddAzureApiManagementRegion.cs index d0e84baf2764..465f78a7655a 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/AddAzureApiManagementRegion.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/AddAzureApiManagementRegion.cs @@ -58,7 +58,7 @@ public class AddAzureApiManagementRegion : AzureApiManagementCmdletBase HelpMessage = "Virtual network configuration. Default value is $null.")] public PsApiManagementVirtualNetwork VirtualNetwork { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecuteCmdLetWrap( () => diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/AzureApiManagementCmdletBase.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/AzureApiManagementCmdletBase.cs index cf49b1b46880..82967c297d1a 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/AzureApiManagementCmdletBase.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/AzureApiManagementCmdletBase.cs @@ -20,9 +20,10 @@ namespace Microsoft.Azure.Commands.ApiManagement.Commands using System.Threading; using Microsoft.Azure.Commands.ApiManagement.Models; using Microsoft.Azure.Commands.ApiManagement.Properties; + using ResourceManager.Common; using Microsoft.WindowsAzure.Commands.Utilities.Common; - public class AzureApiManagementCmdletBase : AzureSMCmdlet + public class AzureApiManagementCmdletBase : AzureRMCmdlet { protected static TimeSpan LongRunningOperationDefaultTimeout = TimeSpan.FromMinutes(1); @@ -34,7 +35,7 @@ public ApiManagementClient Client { if (_client == null) { - _client = new ApiManagementClient(Profile); + _client = new ApiManagementClient(DefaultContext); } return _client; } diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/BackupAzureApiManagement.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/BackupAzureApiManagement.cs index 4d1f494ce450..277cef01f1b1 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/BackupAzureApiManagement.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/BackupAzureApiManagement.cs @@ -63,7 +63,7 @@ public class BackupAzureApiManagement : AzureApiManagementCmdletBase HelpMessage = "Sends backed up PsApiManagement to pipeline if operation succeeds.")] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecuteLongRunningCmdletWrap( () => Client.BeginBackupApiManagement( diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/GetAzureApiManagement.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/GetAzureApiManagement.cs index b226cccfd26d..79b1aa2a60c2 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/GetAzureApiManagement.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/GetAzureApiManagement.cs @@ -45,7 +45,7 @@ public class GetAzureApiManagement : AzureApiManagementCmdletBase HelpMessage = "Name of API Management service.")] public string Name { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (!string.IsNullOrEmpty(ResourceGroupName) && !string.IsNullOrEmpty(Name)) { diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/GetAzureApiManagementSsoToken.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/GetAzureApiManagementSsoToken.cs index d560bad6144d..0fab3e21e9f7 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/GetAzureApiManagementSsoToken.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/GetAzureApiManagementSsoToken.cs @@ -33,7 +33,7 @@ public class GetAzureApiManagementSsoToken : AzureApiManagementCmdletBase [ValidateNotNullOrEmpty] public string Name { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecuteCmdLetWrap( () => Client.GetSsoToken(ResourceGroupName, Name), diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/ImportAzureApiManagementHostnameCertificate.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/ImportAzureApiManagementHostnameCertificate.cs index 2035d19dc946..7d972f1d527f 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/ImportAzureApiManagementHostnameCertificate.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/ImportAzureApiManagementHostnameCertificate.cs @@ -59,7 +59,7 @@ public class ImportAzureApiManagementHostnameCertificate : AzureApiManagementCmd HelpMessage = "Sends imported PsApiManagementHostnameCertificate to pipeline if operation succeeds.")] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecuteCmdLetWrap(() => Client.UploadCertificate( diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagement.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagement.cs index 6b7993122ff9..d3be31e13b3b 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagement.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagement.cs @@ -74,7 +74,7 @@ public class NewAzureApiManagement : AzureApiManagementCmdletBase HelpMessage = "Tags dictionary.")] public Dictionary Tags { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecuteLongRunningCmdletWrap( () => Client.BeginCreateApiManagementService( diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementHostnameConfiguration.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementHostnameConfiguration.cs index ec7d0076c7d8..9846c8fe9873 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementHostnameConfiguration.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementHostnameConfiguration.cs @@ -35,7 +35,7 @@ public class NewAzureApiManagementHostnameConfiguration : AzureSMCmdlet [ValidateNotNullOrEmpty] public string Hostname { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { WriteObject( new PsApiManagementHostnameConfiguration diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementVirtualNetwork.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementVirtualNetwork.cs index 222deba398cf..c68719b69e88 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementVirtualNetwork.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementVirtualNetwork.cs @@ -49,7 +49,7 @@ public class NewAzureApiManagementVirtualNetwork : AzureSMCmdlet [ValidateNotNullOrEmpty] public Guid VnetId { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { WriteObject( new PsApiManagementVirtualNetwork diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RemoveAzureApiManagement.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RemoveAzureApiManagement.cs index 58255047a90b..a9ad9f0a8b20 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RemoveAzureApiManagement.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RemoveAzureApiManagement.cs @@ -44,7 +44,7 @@ public class RemoveAzureApiManagement : AzureApiManagementCmdletBase [Parameter(HelpMessage = "Do not confirm on the removal of the API Management service.")] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var actionDescription = string.Format( CultureInfo.CurrentCulture, diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RemoveAzureApiManagementRegion.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RemoveAzureApiManagementRegion.cs index 891d6e6e9edf..234149b21a8f 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RemoveAzureApiManagementRegion.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RemoveAzureApiManagementRegion.cs @@ -38,7 +38,7 @@ public class RemoveAzureApiManagementRegion : AzureApiManagementCmdletBase "Australia Southeast", IgnoreCase = false)] public string Location { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecuteCmdLetWrap( () => diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RestoreAzureApiManagement.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RestoreAzureApiManagement.cs index 6ff67f8ec98a..dd43b20937f3 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RestoreAzureApiManagement.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/RestoreAzureApiManagement.cs @@ -64,7 +64,7 @@ public class RestoreAzureApiManagement : AzureApiManagementCmdletBase HelpMessage = "Sends restored PsApiManagement to pipeline if operation succeeds.")] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecuteLongRunningCmdletWrap( () => Client.BeginRestoreApiManagement( diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementHostnames.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementHostnames.cs index 65d9713c7e69..df5c3216ddef 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementHostnames.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementHostnames.cs @@ -65,7 +65,7 @@ public class SetAzureApiManagementHostnames : AzureApiManagementCmdletBase HelpMessage = "Sends updated PsApiManagement to pipeline if operation succeeds.")] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { string resourceGroupName, name; PsApiManagementHostnameConfiguration portalHostName, proxyHostName; diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementVirtualNetworks.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementVirtualNetworks.cs index 6426fb8fbe5c..f4a765afda6d 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementVirtualNetworks.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementVirtualNetworks.cs @@ -44,7 +44,7 @@ public class SetAzureApiManagementVirtualNetworks : AzureApiManagementCmdletBase HelpMessage = "Sends updated PsApiManagement to pipeline if operation succeeds.")] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecuteLongRunningCmdletWrap( () => Client.BeginManageVirtualNetworks(ResourceGroupName, Name, VirtualNetworks), diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementDeployment.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementDeployment.cs index d112cbff509d..78e5417b973d 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementDeployment.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementDeployment.cs @@ -92,7 +92,7 @@ public class UpdateAzureApiManagementDeployment : AzureApiManagementCmdletBase HelpMessage = "Sends updated PsApiManagement to pipeline if operation succeeds.")] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { string resourceGroupName, name, location; PsApiManagementSku sku; diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementRegion.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementRegion.cs index 1da9db1c604c..e0be60ade263 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementRegion.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementRegion.cs @@ -59,7 +59,7 @@ public class UpdateAzureApiManagementRegion : AzureApiManagementCmdletBase "Passing $null will remove virtual network configuration for the region.")] public PsApiManagementVirtualNetwork VirtualNetwork { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecuteCmdLetWrap( () => 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 5643db7d286d..b3d1ae18a17c 100644 --- a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj +++ b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/Commands.ApiManagement.ServiceManagement.Test.csproj @@ -156,14 +156,6 @@ - - {3b48a77b-5956-4a62-9081-92ba04b02b27} - Commands.Common.Test - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - {c1bda476-a5cc-4394-914d-48b0ec31a710} Commands.ScenarioTests.Common diff --git a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/ScenarioTests/ApiManagementTests.cs b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/ScenarioTests/ApiManagementTests.cs index 575b433c3a64..044f046dcea2 100644 --- a/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/ScenarioTests/ApiManagementTests.cs +++ b/src/ResourceManager/ApiManagement/Commands.SMAPI.Test/ScenarioTests/ApiManagementTests.cs @@ -23,11 +23,12 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Test.Scenario using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Test; using Microsoft.WindowsAzure.Commands.ScenarioTest; + using WindowsAzure.Commands.Test.Utilities.Common; using Microsoft.WindowsAzure.Management; using Microsoft.WindowsAzure.Management.Storage; using Xunit; - public class ApiManagementTests : IUseFixture + public class ApiManagementTests : RMTestBase, IUseFixture { private readonly EnvironmentSetupHelper _helper; private ApiManagementTestsFixture _fixture; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/Commands.ResourceManagement.Automation.Test.csproj b/src/ResourceManager/Automation/Commands.Automation.Test/Commands.ResourceManagement.Automation.Test.csproj index bdf374c0170e..5a1d2e779b30 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/Commands.ResourceManagement.Automation.Test.csproj +++ b/src/ResourceManager/Automation/Commands.Automation.Test/Commands.ResourceManagement.Automation.Test.csproj @@ -174,6 +174,10 @@ {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common + + {c1bda476-a5cc-4394-914d-48b0ec31a710} + Commands.ScenarioTests.Common + {90def35a-f7ff-40d0-b008-f489a4c092db} Commands.ResourceManagement.Automation diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationAccountTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationAccountTest.cs index 7bd1759cdb7e..59d13aebb1f7 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationAccountTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationAccountTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationAccountTest : TestBase + public class GetAzureAutomationAccountTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCertificateTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCertificateTest.cs index 3566c2867068..33d80d841916 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCertificateTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCertificateTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationCertificateTest : TestBase + public class GetAzureAutomationCertificateTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationConnectionTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationConnectionTest.cs index 83254184efe1..71421deb48ba 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationConnectionTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationConnectionTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationConnectionTest : TestBase + public class GetAzureAutomationConnectionTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCredentialTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCredentialTest.cs index 39f14d584cf3..375d7f89f6be 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCredentialTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCredentialTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationCredentialTest : TestBase + public class GetAzureAutomationCredentialTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationJobTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationJobTest.cs index 4e330a040a13..a10093e96b73 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationJobTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationJobTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationJobTest : TestBase + public class GetAzureAutomationJobTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookTest.cs index 8e99877007b1..d9c61c4dce4b 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationRunbookTest : TestBase + public class GetAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduleTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduleTest.cs index 86422586d72c..1c600b289318 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduleTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduleTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationScheduleTest : TestBase + public class GetAzureAutomationScheduleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduledRunbookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduledRunbookTest.cs index 965bddf28504..518aa1cc7a41 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduledRunbookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduledRunbookTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationScheduledRunbookTest : TestBase + public class GetAzureAutomationScheduledRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationVariableTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationVariableTest.cs index 3e4592ca0060..f8b7511cd9f8 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationVariableTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationVariableTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationVariableTest : TestBase + public class GetAzureAutomationVariableTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationWebhookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationWebhookTest.cs index 183687f7b057..b645056d1424 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationWebhookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationWebhookTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationWebhookTest : TestBase + public class GetAzureAutomationWebhookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationAccountTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationAccountTest.cs index bfbb3e3e9ed9..14e70737d088 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationAccountTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationAccountTest.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationAccountTest : TestBase + public class NewAzureAutomationAccountTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCertificateTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCertificateTest.cs index 6c87ee501b43..987ab29fd1aa 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCertificateTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCertificateTest.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationCertificateTest : TestBase + public class NewAzureAutomationCertificateTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationConnectionTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationConnectionTest.cs index 2b4058a9017e..5f58c84e965c 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationConnectionTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationConnectionTest.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationConnectionTest : TestBase + public class NewAzureAutomationConnectionTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCredentialTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCredentialTest.cs index 8e075f278b24..1f7204055273 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCredentialTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCredentialTest.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationCredentialTest : TestBase + public class NewAzureAutomationCredentialTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationRunbookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationRunbookTest.cs index 64dd9f283e94..f0c3efd069e1 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationRunbookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationRunbookTest.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationRunbookTest : TestBase + public class NewAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationScheduleTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationScheduleTest.cs index 37c93fc901f1..1c1595f6c4c5 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationScheduleTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationScheduleTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationScheduleTest : TestBase + public class NewAzureAutomationScheduleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationVariableTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationVariableTest.cs index 9f0da9adeae7..d0c869b2e8e0 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationVariableTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationVariableTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationVariableTest : TestBase + public class NewAzureAutomationVariableTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationWebhookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationWebhookTest.cs index 17372d0b10fa..f7d7aa77ba22 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationWebhookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationWebhookTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationWebhookTest : TestBase + public class NewAzureAutomationWebhookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/PublishAzureAutomationRunbookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/PublishAzureAutomationRunbookTest.cs index 8e173632c0a8..2ca788067abb 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/PublishAzureAutomationRunbookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/PublishAzureAutomationRunbookTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class PublishAzureAutomationRunbookTest : TestBase + public class PublishAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RegisterAzureAutomationScheduledRunbookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RegisterAzureAutomationScheduledRunbookTest.cs index a9316c283f1c..af260d50cc21 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RegisterAzureAutomationScheduledRunbookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RegisterAzureAutomationScheduledRunbookTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class RegisterAzureAutomationScheduledJobTest : TestBase + public class RegisterAzureAutomationScheduledJobTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationAccountTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationAccountTest.cs index 612777efbe05..3c7a7ddef380 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationAccountTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationAccountTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationAccountTest : TestBase + public class RemoveAzureAutomationAccountTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationCertificateTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationCertificateTest.cs index c62c2860628a..8bf168b1653d 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationCertificateTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationCertificateTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationCertificateTest : TestBase + public class RemoveAzureAutomationCertificateTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationConnectionTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationConnectionTest.cs index 80bfeda8b083..98fff1fa6a20 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationConnectionTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationConnectionTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationConnectionTest : TestBase + public class RemoveAzureAutomationConnectionTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationModuleTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationModuleTest.cs index f3d2b19e035a..907354e0819c 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationModuleTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationModuleTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationModuleTest : TestBase + public class RemoveAzureAutomationModuleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationRunbookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationRunbookTest.cs index 24cce73bf8f4..aa38f14b8ddc 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationRunbookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationRunbookTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationRunbookTest : TestBase + public class RemoveAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationScheduleTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationScheduleTest.cs index 277769340aa1..3feabde5cf5a 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationScheduleTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationScheduleTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationScheduleTest : TestBase + public class RemoveAzureAutomationScheduleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationVariableTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationVariableTest.cs index 1e21e689e4fd..2f95bf30ec95 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationVariableTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationVariableTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationVariableTest : TestBase + public class RemoveAzureAutomationVariableTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationWebhookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationWebhookTest.cs index df4c7c4ded81..bc415cdb2146 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationWebhookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationWebhookTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationWebhookTest : TestBase + public class RemoveAzureAutomationWebhookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/ResumeAzureAutomationJobTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/ResumeAzureAutomationJobTest.cs index 7b1c73f1e37a..0767900a7faa 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/ResumeAzureAutomationJobTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/ResumeAzureAutomationJobTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class ResumeAzureAutomationJobTest : TestBase + public class ResumeAzureAutomationJobTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationCredentialTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationCredentialTest.cs index ef6a834f7332..d72316f74fc7 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationCredentialTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationCredentialTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class SetAzureAutomationCredentialTest : TestBase + public class SetAzureAutomationCredentialTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookTest.cs index eebcc93a0084..3c5a28b0c81c 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookTest.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class SetAzureAutomationRunbookTest : TestBase + public class SetAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationScheduleTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationScheduleTest.cs index d6cb509ab80c..0b288d3311de 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationScheduleTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationScheduleTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class SetAzureAutomationScheduleTest : TestBase + public class SetAzureAutomationScheduleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationWebhookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationWebhookTest.cs index 0ef67fe995c2..7c1403122283 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationWebhookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationWebhookTest.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class SetAzureAutomationWebhookTest : TestBase + public class SetAzureAutomationWebhookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/StartAzureAutomationRunbookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/StartAzureAutomationRunbookTest.cs index 3e9a75ef16e1..31e4f499ec07 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/StartAzureAutomationRunbookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/StartAzureAutomationRunbookTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class StartAzureAutomationRunbookTest : TestBase + public class StartAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/StopAzureAutomationJobTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/StopAzureAutomationJobTest.cs index d3d992390378..47709556637f 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/StopAzureAutomationJobTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/StopAzureAutomationJobTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class StopAzureAutomationJobTest : TestBase + public class StopAzureAutomationJobTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SuspendAzureAutomationJobTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SuspendAzureAutomationJobTest.cs index c566ac6b7d6a..0b7cf9b29ea9 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SuspendAzureAutomationJobTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/SuspendAzureAutomationJobTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class SuspendAzureAutomationJobTest : TestBase + public class SuspendAzureAutomationJobTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/UnregisterAzureAutomationScheduledRunbookTest.cs b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/UnregisterAzureAutomationScheduledRunbookTest.cs index e91e179d282c..e7f1d8aa50c6 100644 --- a/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/UnregisterAzureAutomationScheduledRunbookTest.cs +++ b/src/ResourceManager/Automation/Commands.Automation.Test/UnitTests/UnregisterAzureAutomationScheduledRunbookTest.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Automation.Test.UnitTests { [TestClass] - public class UnregisterAzureAutomationScheduledRunbookTest : TestBase + public class UnregisterAzureAutomationScheduledRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ResourceManager/Automation/Commands.Automation/Commands.ResourceManagement.Automation.csproj b/src/ResourceManager/Automation/Commands.Automation/Commands.ResourceManagement.Automation.csproj index f359e67b18a3..c58a7044163c 100644 --- a/src/ResourceManager/Automation/Commands.Automation/Commands.ResourceManagement.Automation.csproj +++ b/src/ResourceManager/Automation/Commands.Automation/Commands.ResourceManagement.Automation.csproj @@ -254,12 +254,6 @@ Designer - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - - ResXFileCodeGenerator @@ -267,6 +261,12 @@ Designer + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + diff --git a/src/ResourceManager/Automation/Commands.Automation/Common/RequestSettings.cs b/src/ResourceManager/Automation/Commands.Automation/Common/RequestSettings.cs index 86bae5056116..b8e7ba5fef6b 100644 --- a/src/ResourceManager/Automation/Commands.Automation/Common/RequestSettings.cs +++ b/src/ResourceManager/Automation/Commands.Automation/Common/RequestSettings.cs @@ -35,7 +35,15 @@ public RequestSettings(IAutomationManagementClient automationClient) public void Dispose() { - client.HttpClient.DefaultRequestHeaders.Remove(Constants.ClientRequestIdHeaderName); + Dispose(true); + } + + protected virtual void Dispose(bool disposing) + { + if (disposing) + { + client.HttpClient.DefaultRequestHeaders.Remove(Constants.ClientRequestIdHeaderName); + } } } } 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 7ead0e19360a..4e4edf3815f9 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Commands.AzureBackup.Test.csproj @@ -141,10 +141,6 @@ - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - {c1bda476-a5cc-4394-914d-48b0ec31a710} Commands.ScenarioTests.Common diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs index 9aafaf824660..0b2d370c24ea 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/Properties/AssemblyInfo.cs @@ -46,5 +46,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyVersion)] -[assembly: AssemblyFileVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyFileVersion)] +[assembly: AssemblyVersion("1.0.0")] +[assembly: AssemblyFileVersion("1.0.0")] diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs index b14797ff22e4..031ff5b7ca26 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/ScenarioTests/AzureBackupTestBase.cs @@ -23,10 +23,11 @@ using System.Net.Http; using System.Net.Security; using System.Reflection; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; namespace Microsoft.Azure.Commands.AzureBackup.Test.ScenarioTests { - public abstract class AzureBackupTestsBase + public abstract class AzureBackupTestsBase : RMTestBase { private CSMTestEnvironmentFactory csmTestFactory; private EnvironmentSetupHelper helper; @@ -52,7 +53,6 @@ protected void SetupManagementClients() BackupVaultServicesMgmtClient = GetBackupVaultServicesManagementClient(); BackupServicesMgmtClient = GetBackupServicesManagementClient(); - //helper.SetupManagementClients(BackupServicesMgmtClient); helper.SetupSomeOfManagementClients(BackupVaultServicesMgmtClient, BackupServicesMgmtClient); } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackUpRestoreBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackUpRestoreBase.cs index 5cbce720bd25..6224a10b4be5 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackUpRestoreBase.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackUpRestoreBase.cs @@ -36,9 +36,9 @@ public abstract class AzureBackupRestoreBase : AzureBackupCmdletBase [ValidateNotNullOrEmpty] public AzureRMBackupRecoveryPoint RecoveryPoint { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { - base.ExecuteCmdlet(); + base.ProcessRecord(); WriteDebug(String.Format(Resources.CmdletCalled, RecoveryPoint.ResourceGroupName, RecoveryPoint.ResourceName, RecoveryPoint.Location)); InitializeAzureBackupCmdlet(RecoveryPoint.ResourceGroupName, RecoveryPoint.ResourceName); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletBase.cs index 982550f1a901..fc40b032197d 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletBase.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletBase.cs @@ -28,10 +28,11 @@ using System.Net; using System.Threading; using CmdletModel = Microsoft.Azure.Commands.AzureBackup.Models; +using Microsoft.Azure.Commands.ResourceManager.Common; namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets { - public abstract class AzureBackupCmdletBase : AzureSMCmdlet + public abstract class AzureBackupCmdletBase : AzureRMCmdlet { /// /// Azure backup client. @@ -56,7 +57,7 @@ protected AzureBackupClientAdapter AzureBackupClient /// protected void InitializeAzureBackupCmdlet(string rgName, string rName) { - var cloudServicesClient = AzureSession.ClientFactory.CreateClient(Profile, Profile.DefaultContext.Subscription, AzureEnvironment.Endpoint.ResourceManager); + var cloudServicesClient = AzureSession.ClientFactory.CreateClient(DefaultContext, AzureEnvironment.Endpoint.ResourceManager); azureBackupClientAdapter = new AzureBackupClientAdapter(cloudServicesClient.Credentials, cloudServicesClient.BaseUri); WriteDebug(string.Format(Resources.InitializingClient, azureBackupClientAdapter.GetClientRequestId(), rgName, rName)); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs index ac217acd4b19..17f92b3a7ecb 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs @@ -16,84 +16,129 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets { internal static class AzureBackupCmdletHelpMessage { - public const string Vault = "The vault details"; - public const string ResourceGroupName = "The ResourceGroup name."; - public const string ResourceName = "The Resource name."; - public const string Location = "The resource location."; - public const string TargetLocation = "The directory where the credentials file will be saved. This must be an absolute path."; - public const string StorageType = "The vault back-end storage type."; - public const string ManagedResourceName = "The resource name of the resource being managed by the Azure Backup service (ex: resource name of the VM)."; - public const string ManagedResourceGroupName = "The resource group name of the resource being managed by the Azure Backup service (ex: resource group name of the VM)."; - public const string ContainerRegistrationStatus = "The container registration status."; - public const string ContainerType = "The container type."; - public const string AzureBackupContainer = "Azure Backup Container for Azure Backup Item."; - - public const string PolicyName = "The protection policy name."; + /* Unidentified strings - not scrubbed */ public const string ResourceTags = "A hash table which represents resource tags."; - public const string ContainerId = "The container ID."; - - public const string JobFilterJobIdHelpMessage = "The job ID to filter jobs"; - public const string JobFilterJobHelpMessage = "The job for filtering"; - public const string JobFilterStartTimeHelpMessage = "The start time of query range"; - public const string JobFilterEndTimeHelpMessage = "The end time of query range"; - public const string JobFilterOperationHelpMessage = "The operation for filtering jos"; - public const string JobFilterStatusHelpMessage = "The status for filtering jobs"; - public const string JobFitlerVaultHelpMessage = "The vault of which jobs have to be filtered"; - public const string JobFilterTypeHelpMessage = "The type of workload whose jobs have to be filtered"; - - public const string JobDetailsFilterJobIdHelpMessage = "The job ID to get details"; - public const string JobDetailsFilterVaultHelpMessage = "The vault of which job details should be fetched"; - public const string JobDetailsFilterJobHelpMessage = "The job whose full details should be fetched"; - - public const string StopJobFilterJobIdHelpMessage = "The job ID to stop job"; - public const string StopJobFilterVaultHelpMessage = "The vault of which a job has to be stopped"; - public const string StopJobFilterJobHelpMessage = "The job which should be stopped"; - - public const string WaitJobFilterJobIdHelpMessage = "The job ID to stop job"; - public const string WaitJobFilterVaultHelpMessage = "The vault of which a job has to be stopped"; - public const string WaitJobFilterJobHelpMessage = "The job which should be stopped"; - public const string WaitJobFilterTimeoutHelpMessage = "Maximum number of seconds for which cmdlet should wait before job(s) complete running."; - + public const string ContainerId = "A unique identifier for the Azure Backup container object."; public const string VirtualMachine = "Virtual Machine."; + public const string BackupType = "Type of backup."; + public const string RetentionType = "Unit of retention for the recovery point."; + public const string RententionDuration = "Specifies how long a recovery point will be retained, for a given RetentionType."; + + /* Get-AzureRMBackupVault */ + public const string ResourceGroupName = "The ResourceGroup in which the Azure resource is placed."; + public const string ResourceName = "The name of the Azure resource."; + + /* New-AzureRMBackupVault */ + //public const string ResourceGroupName + //public const string ResourceName + public const string Location = "The Azure region where the Backup vault is located."; + public const string StorageType = "The storage redundancy for the backup data stored in the vault. The currently supported storage redundancy options are Locally Redundant Storage (LRS) and Geo-Redundant Storage (GRS)."; + + /* Set-AzureRMBackupVault */ + //public const string Vault + //public const string StorageType + + /* Get-AzureRMBackupVaultCredentials */ + //public const string Vault + public const string TargetLocation = "The directory where the vault credentials file will be saved. This must be specified as an absolute path."; + + /* Get-AzureRMBackupContainer */ + public const string ManagedResourceName = "The name of the resource being managed by the Azure Backup service (for example: resource name of the VM)."; + public const string ManagedResourceGroupName = "The ResourceGroup of the resource being managed by the Azure Backup service (for example: ResourceGroup name of the VM)."; + public const string ContainerRegistrationStatus = "The registration status of the Azure Backup container."; + public const string ContainerType = "The type of the Azure Backup container. This can be a Windows Server, an Azure IaaS VM, or a Data Protection Manager server."; + //public const string Vault + + /* Get-AzureRMBackupItem */ + public const string AzureBackupContainer = "The Azure Backup container object which is the parent resource for the Azure Backup Item. The container can be a Windows Server, an Azure IaaS VM, or a Data Protection Manager server."; public const string ProtectionStatus = "Protection Status of the azure backup item."; - public const string AzureBackUpItem = "Azure BackUp Item."; - public const string RecoveryPointId = "Recovery Point Id."; - public const string StorageAccountName = "Storage Account Name."; - public const string AzureBackUpRecoveryPoint = "Recovery Point."; - public const string Type = "Type of Azure Backup Item."; public const string Status = "Status of Azure Backup Item"; - public const string AzureBackupItem = "Azure Backup Item for enabling protection"; - public const string RemoveProtectionOption = "Remove Protection Option"; - public const string Reason = "Reson for removing protection"; - public const string Comments = "Comments for for removing protection"; - public const string WorkloadType = "Workload type for which the policy is defined."; - public const string BackupType = "Type of backup."; - public const string DailyScheduleType = "Switch parameter for daily backup schedule."; - public const string WeeklyScheduleType = "Switch parameter for weekly backup schedule."; - public const string ScheduleRunDays = "Days of week for running backup, required for weekly schedule."; + public const string Type = "Type of Azure Backup Item."; + + /* Enable-AzureRMBackupProtection */ + public const string AzureBackupItemEnable = "The Azure Backup item that is being enabled for protection."; + public const string PolicyObject = "The Protection Policy object that contains all the scheduling information for backup and retention. This policy will be associated with the backup item provided as input."; + + /* Enable-AzureRMBackupContainerReregistration */ + public const string AzureBackupContainerToReregister = "The Azure Backup container to be unregistered. For this commandlet, the container cannot be of type AzureVM. Use the Get-AzureRMBackupContainer to get a list of containers."; + + /* Disable-AzureRMBackupProtection */ + public const string RemoveProtectionOption = "If this option is used, all the backup data for this item will also be deleted and restoring data will not be possible."; + public const string AzureBackupItemDisable = "Azure Backup item for which the protection is being disabled."; + public const string Reason = "User-specified reason for removing protection."; + public const string Comments = "User-specified comments provided at the time of removing protection."; + + /* Get-AzureRMBackupJob */ + public const string JobFilterJobIdHelpMessage = "The unique identifier is used as a filtering criterion. It provides details to fetch the latest information about a job."; + public const string JobFilterJobHelpMessage = "The job object is used as a filtering criterion. It provides details to fetch the latest information about a job."; + public const string JobFilterStartTimeHelpMessage = "For the time range that is used as a filtering critetion, this parameter provides the starting boundary."; + public const string JobFilterEndTimeHelpMessage = "For the time range that is used as a filtering critetion, this parameter provides the ending boundary."; + public const string JobFilterOperationHelpMessage = "The operation name of the job is used as a filtering criterion."; + public const string JobFilterStatusHelpMessage = "The status of the job is used as a filtering criterion."; + public const string JobFitlerVaultHelpMessage = "The Azure Backup vault which is the parent of the jobs being queried. This is needed only when the -Job parameter is not being used."; + public const string JobFilterTypeHelpMessage = "The type of workload is used as a filtering criterion."; + + /* Get-AzureRMBackupJobDetails */ + public const string JobDetailsFilterJobIdHelpMessage = "The unique identifier for the job whose full details are being requested"; + public const string JobDetailsFilterVaultHelpMessage = "The Azure Backup vault which is the parent resource of the job"; + public const string JobDetailsFilterJobHelpMessage = "The object that represents the job whose full details are being requested"; + + /* Stop-AzureRMBackupJob */ + public const string StopJobFilterJobIdHelpMessage = "The unique identifier for the job that needs to be stopped"; + public const string StopJobFilterVaultHelpMessage = "The Azure Backup vault which is the parent resource of the job"; + public const string StopJobFilterJobHelpMessage = "The object that represents the job that needs be stopped"; + + /* Wait-AzureRMBackupJob */ + public const string WaitJobFilterJobIdHelpMessage = "The unique identifier for the job on which the commandlet will wait for completion"; + public const string WaitJobFilterVaultHelpMessage = "The Azure Backup vault which is the parent resource of the job"; + public const string WaitJobFilterJobHelpMessage = "The object that represents the job on which the commandlet will wait for completion"; + public const string WaitJobFilterTimeoutHelpMessage = "If the commandlet should not wait infinitely for the job to finish, then this timeout value needs to be specified. The parameter specifies the maximum number of seconds for which the commandlet should wait before returning."; + + /* Register-AzureRMBackupContainer */ + public const string VMName = "The name of the Azure VM that will be registered with the service."; + public const string ServiceName = "The Cloud Service name of Azure VM"; + public const string RGName = "The ResourceGroup name of Azure VM"; + public const string Vault = "The Azure Backup vault object which is the parent resource."; + + /* Unregister-AzureRMBackupContainer */ + public const string AzureBackupContainerToUnregister = "The Azure Backup container to be unregistered. This can be a Windows Server, an Azure IaaS VM, or a Data Protection Manager server. Use the Get-AzureRMBackupContainer to get a list of containers."; + + /* New-AzureRMBackupProtectionPolicy */ + public const string PolicyName = "The name of the Azure Backup protection policy. The name of the policy should be unique within a backup vault"; + public const string WorkloadType = "Workload type for which the protection policy is defined."; + public const string DailyScheduleType = "Switch parameter to choose a daily backup schedule."; + public const string WeeklyScheduleType = "Switch parameter to choose a weekly backup schedule."; + public const string ScheduleRunDays = "Days of week on which the backup will be triggered. Required when specifying a weekly backup schedule."; public const string ScheduleRunTimes = "Times of day in UTC for running backup."; - public const string RetentionType = "Unit of retention for the recovery point."; - public const string RententionDuration = "Duration of retention for the recovery point in units specified by RetentionType."; - public const string PolicyNewName = "Policy new name"; - public const string AzureBackupPolicy = "Azure Backup protection policy"; - public const string VMName = "Azure VM name to be register"; - public const string ServiceName = "Cloud service name of Azure VM to be register"; - public const string RGName = "Resource Group name of Azure VM to be register"; - public const string AzureBackupContainerToUnregister = "Azure Backup Container tobe unregister."; - - public const string RetentionPolicyList = "List of Retention Policies to be associated with protection policy."; - public const string DailyRetention = "Switch param for Daily Retention"; - public const string WeeklyRetention = "Switch param for Daily Retention"; - public const string MonthlyRetentionInDailyFormat = "Switch param for MonthlyRetentionInDailyFormat"; - public const string MonthlyRetentionInWeeklyFormat = "Switch param for MonthlyRetentionInWeeklyFormat"; - public const string YearlyRetentionInDailyFormat = "Switch param for YearlyRetentionInDailyFormat"; - public const string YearlyRetentionInWeeklyFormat = "Switch param for YearlyRetentionInWeeklyFormat"; - public const string DaysOfWeek = "List of Days of Week"; - public const string DaysOfMonth = "List of Days of Month"; - public const string WeekNumber = "List of Week Numbers of the month"; - public const string MonthsOfYear = "List of Months of the year"; - public const string Retention = "Retention duration value"; - - public const string PolicyObject = "Policy object for enabling protection"; + public const string RetentionPolicyList = "List of Retention Policies to be associated with protection policy. You can use a combination of Daily, Weekly, Monthly, and Yearly retention policies but not more than 1 of each."; + public const string PolicyVault = "The Azure Backup vault which is the parent resource for the protection policy."; + + /* Set-AzureRMBackupProtectionPolicy */ + public const string PolicyNewName = "The new name to be given to this policy. Note that the policy name is unique to a backup vault and you need to ensure that you pick a name that does not conflict with existing names."; + public const string AzureBackupPolicy = "Azure Backup protection policy object that contains the complete policy information."; + + /* New-AzureRMBackupRetentionPolicyObject */ + public const string DailyRetention = "Switch paramater to signal that this policy is being used for Daily Retention"; + public const string WeeklyRetention = "Switch parameter to signal that this policy is being used for Weekly Retention"; + public const string MonthlyRetentionInDailyFormat = "Allows the user to specify the Monthly retention policy based on specific days of the month"; + public const string MonthlyRetentionInWeeklyFormat = "Allows the user to specify the Monthly retention policy based on specific weeks of the month"; + public const string YearlyRetentionInDailyFormat = "Allows the user to specify the Yearly retention policy based on specific days of the year"; + public const string YearlyRetentionInWeeklyFormat = "Allows the user to specify the Yearly retention policy based on specific weeks of the year"; + public const string DaysOfWeek = "Specifies the days of the week that will be used in the policy"; + public const string DaysOfMonth = "Specifies the days of the month that will be used in the policy"; + public const string WeekNumber = "Specifies the week number of the month that will be used in the policy"; + public const string MonthsOfYear = "Specifies the months of the year that will be used in the policy"; + public const string Retention = "Specifies the duration of the retention policy"; + + /* Backup-AzureRMBackupItem */ + public const string AzureBackupItem = "The Azure Backup item that is being configured for backup."; + + /* Get-AzureRMBackupRecoveryPoint */ + public const string AzureBackupItemGet = "The Azure Backup item for which the recovery points are being fetched."; + public const string RecoveryPointId = "The unique identifier for the recovery point that is being fetched."; + + /* Restore-AzureRMBackupItem */ + public const string AzureBackUpRecoveryPoint = "The PowerShell object that refers to the recovery point. Use Get-AzureRMBackupRecoveryPoint to get the PowerShell object to be used as input to this commandlet."; + public const string StorageAccountName = "The destination storage account where the restored disks and config information will be stored."; } } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupContainerCmdletBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupContainerCmdletBase.cs index 8a70d8635362..5f0fe48fa4a0 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupContainerCmdletBase.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupContainerCmdletBase.cs @@ -33,9 +33,9 @@ public abstract class AzureBackupContainerCmdletBase : AzureBackupCmdletBase [ValidateNotNullOrEmpty] public AzureRMBackupContainer Container { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { - base.ExecuteCmdlet(); + base.ProcessRecord(); WriteDebug(String.Format(Resources.CmdletCalled, Container.ResourceGroupName, Container.ResourceName, Container.Location)); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupDSCmdletBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupDSCmdletBase.cs index 74455d5fefd4..667228f4aeb7 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupDSCmdletBase.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupDSCmdletBase.cs @@ -29,13 +29,13 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets { public abstract class AzureRMBackupDSCmdletBase : AzureBackupCmdletBase { - [Parameter(Position = 0, Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.AzureBackUpItem, ValueFromPipeline = true)] + [Parameter(Position = 0, Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.AzureBackupItem, ValueFromPipeline = true)] [ValidateNotNullOrEmpty] public AzureRMBackupItem Item { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { - base.ExecuteCmdlet(); + base.ProcessRecord(); WriteDebug(String.Format(Resources.CmdletCalled, Item.ResourceGroupName, Item.ResourceName, Item.Location)); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupItemCmdletBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupItemCmdletBase.cs index fdad61ff1125..5db047ecabb8 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupItemCmdletBase.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupItemCmdletBase.cs @@ -33,9 +33,9 @@ public abstract class AzureRMBackupItemCmdletBase : AzureBackupCmdletBase [ValidateNotNullOrEmpty] public AzureRMBackupContainerContextObject Item { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { - base.ExecuteCmdlet(); + base.ProcessRecord(); WriteDebug(String.Format(Resources.CmdletCalled, Item.ResourceGroupName, Item.ResourceName, Item.Location)); InitializeAzureBackupCmdlet(Item.ResourceGroupName, Item.ResourceName); } diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupPolicyCmdletBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupPolicyCmdletBase.cs index fd3448384205..9ab8b059c90e 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupPolicyCmdletBase.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupPolicyCmdletBase.cs @@ -36,9 +36,9 @@ public abstract class AzureBackupPolicyCmdletBase : AzureBackupCmdletBase [ValidateNotNullOrEmpty] public AzureRMBackupProtectionPolicy ProtectionPolicy { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { - base.ExecuteCmdlet(); + base.ProcessRecord(); WriteDebug(String.Format(Resources.CmdletCalled, ProtectionPolicy.ResourceGroupName, ProtectionPolicy.ResourceName, ProtectionPolicy.Location)); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupVaultCmdletBase.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupVaultCmdletBase.cs index 7b25d97ca401..a2bcec85b700 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupVaultCmdletBase.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupVaultCmdletBase.cs @@ -23,9 +23,9 @@ public abstract class AzureBackupVaultCmdletBase : AzureBackupCmdletBase [ValidateNotNullOrEmpty] public AzureRMBackupVault Vault { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { - base.ExecuteCmdlet(); + base.ProcessRecord(); Vault.Validate(); InitializeAzureBackupCmdlet(Vault); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Backup/BackupAzureRMBackupItem.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Backup/BackupAzureRMBackupItem.cs index dff9d4cb385c..960219133a41 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Backup/BackupAzureRMBackupItem.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Backup/BackupAzureRMBackupItem.cs @@ -30,11 +30,11 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets [Cmdlet(VerbsData.Backup, "AzureRMBackupItem"), OutputType(typeof(AzureRMBackupJob))] public class BackupAzureRMBackupItem : AzureRMBackupDSCmdletBase { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); WriteDebug(Resources.MakingClientCall); Guid operationId = AzureBackupClient.TriggerBackup(Item.ResourceGroupName, Item.ResourceName, Item.ContainerUniqueName, Item.ItemName); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureRMBackupContainerReregistration.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureRMBackupContainerReregistration.cs index 7fe6cc352f75..4fd3110bdfbf 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureRMBackupContainerReregistration.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/EnableAzureRMBackupContainerReregistration.cs @@ -22,7 +22,6 @@ using System.Threading.Tasks; using Microsoft.Azure.Management.BackupServices.Models; using MBS = Microsoft.Azure.Management.BackupServices; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; using Microsoft.Azure.Commands.AzureBackup.Properties; using Microsoft.Azure.Commands.AzureBackup.Models; using Microsoft.Azure.Commands.AzureBackup.Helpers; @@ -36,11 +35,11 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets [Cmdlet(VerbsLifecycle.Enable, "AzureRMBackupContainerReregistration")] public class EnableAzureRMBackupContainerReregistration : AzureBackupContainerCmdletBase { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); AzureBackupContainerType containerType = (AzureBackupContainerType)Enum.Parse(typeof(AzureBackupContainerType), Container.ContainerType); switch (containerType) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureRMBackupContainer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureRMBackupContainer.cs index 4a60561d17c8..d3f8023cbd3c 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureRMBackupContainer.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/GetAzureRMBackupContainer.cs @@ -48,11 +48,11 @@ public class GetAzureRMBackupContainer : AzureBackupVaultCmdletBase [ValidateNotNullOrEmpty] public AzureBackupContainerRegistrationStatus Status { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); List containers = new List(); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/RegisterAzureRMBackupContainer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/RegisterAzureRMBackupContainer.cs index 58f9b5e80f11..60b2bba83617 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/RegisterAzureRMBackupContainer.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/RegisterAzureRMBackupContainer.cs @@ -22,7 +22,6 @@ using System.Threading.Tasks; using Microsoft.Azure.Management.BackupServices.Models; using MBS = Microsoft.Azure.Management.BackupServices; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; using Microsoft.Azure.Commands.AzureBackup.Properties; using Microsoft.Azure.Commands.AzureBackup.Models; using Microsoft.Azure.Commands.AzureBackup.Helpers; @@ -50,11 +49,11 @@ public class RegisterAzureRMBackupContainer : AzureBackupVaultCmdletBase public string ResourceGroupName { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); string vmName = String.Empty; string rgName = String.Empty; diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/UnregisterAzureRMBackupContainer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/UnregisterAzureRMBackupContainer.cs index 08f4b8e4e912..cb6d6d6d3b19 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/UnregisterAzureRMBackupContainer.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Container/UnregisterAzureRMBackupContainer.cs @@ -23,7 +23,6 @@ using Microsoft.Azure.Management.BackupServices.Models; using MBS = Microsoft.Azure.Management.BackupServices; using Microsoft.Azure.Commands.AzureBackup.Models; -using Microsoft.WindowsAzure.Commands.Utilities.Store; using Microsoft.Azure.Commands.AzureBackup.Properties; namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets @@ -34,16 +33,14 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets [Cmdlet(VerbsLifecycle.Unregister, "AzureRMBackupContainer")] public class UnregisterAzureRMBackupContainer : AzureBackupContainerCmdletBase { - private PowerShellCustomConfirmation customerConfirmation; - [Parameter(Position = 1, Mandatory = false, HelpMessage = "Confirm unregistration and deletion of server")] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); AzureBackupContainerType containerType = (AzureBackupContainerType)Enum.Parse(typeof(AzureBackupContainerType), Container.ContainerType, true); switch (containerType) @@ -63,18 +60,8 @@ public override void ExecuteCmdlet() private void DeleteServer() { - bool shouldUnregister = true; - - if (!Force.IsPresent) - { - customerConfirmation = customerConfirmation ?? new PowerShellCustomConfirmation(Host); - shouldUnregister = customerConfirmation.ShouldProcess(Resources.UnregisterServerCaption, Resources.UnregisterServerMessage); - } - - if (shouldUnregister) - { - AzureBackupClient.UnregisterMachineContainer(Container.ResourceGroupName, Container.ResourceName, Container.Id); - } + ConfirmAction(Force, Resources.UnregisterServerCaption, Resources.UnregisterServerMessage, "", () => + AzureBackupClient.UnregisterMachineContainer(Container.ResourceGroupName, Container.ResourceName, Container.Id)); } private void UnregisterContainer() diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Disable-AzureRMBackupProtection .cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Disable-AzureRMBackupProtection .cs index af9f3f04e048..750de6953a4d 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Disable-AzureRMBackupProtection .cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Disable-AzureRMBackupProtection .cs @@ -40,11 +40,11 @@ public SwitchParameter RemoveRecoveryPoints } private bool DeleteBackupData; - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); Guid operationId = Guid.Empty; WriteDebug(Resources.MakingClientCall); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Enable-AzureRMBackupProtection .cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Enable-AzureRMBackupProtection .cs index 1f52a7b7e487..fad8255009f3 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Enable-AzureRMBackupProtection .cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/Enable-AzureRMBackupProtection .cs @@ -36,11 +36,11 @@ public class EnableAzureRMBackupProtection : AzureRMBackupItemCmdletBase [ValidateNotNullOrEmpty] public AzureRMBackupProtectionPolicy Policy { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); WriteDebug(Resources.MakingClientCall); string itemName = string.Empty; diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/GetAzureRMBackupItem.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/GetAzureRMBackupItem.cs index a0e6495bde0b..a142f15f138f 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/GetAzureRMBackupItem.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Item/GetAzureRMBackupItem.cs @@ -44,11 +44,11 @@ public class GetAzureRMBackupItem : AzureBackupContainerCmdletBase [ValidateSet("AzureVM")] public string Type { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); List azureBackupDatasourceObjects = null; List azureBackupPOObjects = null; diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/AzureBackupJobHelper.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/AzureBackupJobHelper.cs index fca51c85086b..56bbbe4a0beb 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/AzureBackupJobHelper.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/AzureBackupJobHelper.cs @@ -18,6 +18,7 @@ using System.Xml; using System.Linq; using Mgmt = Microsoft.Azure.Management.BackupServices.Models; +using Microsoft.Azure.Commands.AzureBackup.Models; namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets @@ -62,6 +63,30 @@ public static class AzureBackupJobHelper { public static DateTime MinimumAllowedDate = new DateTime(DateTime.MinValue.Year, DateTime.MinValue.Month, DateTime.MinValue.Day, DateTime.MinValue.Hour, DateTime.MinValue.Minute, DateTime.MinValue.Second, DateTimeKind.Utc); + public static string GetTypeForPS(string itemType) + { + AzureBackupItemType managedContainerType = (AzureBackupItemType)Enum.Parse(typeof(AzureBackupItemType), itemType, true); + + string returnType = string.Empty; + + switch (managedContainerType) + { + case AzureBackupItemType.IaasVM: + returnType = "AzureVM"; + break; + } + + return returnType; + } + + public static string GetTypeForService(string itemType) + { + if (itemType.CompareTo("AzureVM") == 0) + return AzureBackupItemType.IaasVM.ToString(); + throw new ArgumentException("Invalid value", "itemType"); + } + + public static bool IsValidStatus(string inputStatus) { JobStatus status; diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/GetAzureRMBackupJob.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/GetAzureRMBackupJob.cs index 0c8a35f7cd73..2e3f297ac8e7 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/GetAzureRMBackupJob.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/GetAzureRMBackupJob.cs @@ -56,14 +56,14 @@ public class GetAzureRMBackupJob : AzureBackupCmdletBase public string Status { get; set; } [Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.JobFilterTypeHelpMessage, ParameterSetName = "FiltersSet")] - [ValidateSet("IaasVM")] + [ValidateSet("AzureVM")] public string Type { get; set; } [Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.JobFilterOperationHelpMessage, ParameterSetName = "FiltersSet")] [ValidateSet("Backup", "ConfigureBackup", "DeleteBackupData", "Register", "Restore", "UnProtect", "Unregister")] public string Operation { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { @@ -79,6 +79,11 @@ public override void ExecuteCmdlet() JobId = Job.InstanceId; } + if (Type != null) + { + Type = AzureBackupJobHelper.GetTypeForService(Type); + } + // validations if (!From.HasValue) { diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/GetAzureRMBackupJobDetails.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/GetAzureRMBackupJobDetails.cs index 742b85ae59f5..007c21106453 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/GetAzureRMBackupJobDetails.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/GetAzureRMBackupJobDetails.cs @@ -35,13 +35,13 @@ public class GetAzureRMBackupJobDetils : AzureBackupCmdletBase [Parameter(Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.JobDetailsFilterJobIdHelpMessage, ParameterSetName = "IdFiltersSet")] [ValidateNotNullOrEmpty] - public string JobID { get; set; } + public string JobId { get; set; } [Parameter(Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.JobDetailsFilterJobHelpMessage, ParameterSetName = "JobsFiltersSet", ValueFromPipeline = true)] [ValidateNotNull] public AzureRMBackupJob Job { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (Job != null) { @@ -53,12 +53,12 @@ public override void ExecuteCmdlet() { if (Job != null) { - JobID = Job.InstanceId; + JobId = Job.InstanceId; } - WriteDebug(String.Format(Resources.JobIdFilter, JobID)); + WriteDebug(String.Format(Resources.JobIdFilter, JobId)); - Mgmt.CSMJobDetailsResponse serviceJobProperties = AzureBackupClient.GetJobDetails(Vault.ResourceGroupName, Vault.Name, JobID); + Mgmt.CSMJobDetailsResponse serviceJobProperties = AzureBackupClient.GetJobDetails(Vault.ResourceGroupName, Vault.Name, JobId); AzureRMBackupJobDetails jobDetails = new AzureRMBackupJobDetails(Vault, serviceJobProperties.JobDetailedProperties, serviceJobProperties.Name); WriteDebug(Resources.JobResponse); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/StopAzureRMBackukpJob.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/StopAzureRMBackukpJob.cs index a22d161afcad..2357f8b33ae3 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/StopAzureRMBackukpJob.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/StopAzureRMBackukpJob.cs @@ -43,7 +43,7 @@ public class StopAzureRMBackupJob : AzureBackupCmdletBase [ValidateNotNull] public AzureRMBackupJob Job { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (Job != null) { diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/WaitAzureRMBackupJob.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/WaitAzureRMBackupJob.cs index af4b8253f462..7660b632022c 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/WaitAzureRMBackupJob.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Jobs/WaitAzureRMBackupJob.cs @@ -34,7 +34,7 @@ public class WaitAzureRMBackupJob : AzureBackupCmdletBase [ValidateRange(1, Int64.MaxValue)] public long? TimeOut { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { List specifiedJobs = new List(); AzureRMBackupVault Vault = null; diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/GetAzureRMBackupProtectionPolicy.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/GetAzureRMBackupProtectionPolicy.cs index 0b334aec9cd1..6466cde23e0a 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/GetAzureRMBackupProtectionPolicy.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/GetAzureRMBackupProtectionPolicy.cs @@ -29,11 +29,11 @@ public class GetAzureRMBackupProtectionPolicy : AzureBackupVaultCmdletBase [ValidateNotNullOrEmpty] public string Name { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); if (Name != null) { diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/NewAzureRMBackupProtectionPolicy.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/NewAzureRMBackupProtectionPolicy.cs index cf3406a42c85..7e3db41bc1d0 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/NewAzureRMBackupProtectionPolicy.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/NewAzureRMBackupProtectionPolicy.cs @@ -60,11 +60,11 @@ public class NewAzureRMBackupProtectionPolicy : AzureBackupVaultCmdletBase [Parameter(Position = 7, Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.RetentionPolicyList, ValueFromPipelineByPropertyName = true)] public AzureRMBackupRetentionPolicy[] RetentionPolicy { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); WriteDebug("Making client call"); ProtectionPolicyHelpers.ValidateProtectionPolicyName(Name); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/NewAzureRMBackupRetentionPolicyObject.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/NewAzureRMBackupRetentionPolicyObject.cs index 071490c1b1d2..1a1d98aafa4f 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/NewAzureRMBackupRetentionPolicyObject.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/NewAzureRMBackupRetentionPolicyObject.cs @@ -79,11 +79,11 @@ public class NewAzureRMBackupRetentionPolicyObject : AzureBackupCmdletBase [Parameter(Mandatory = true, HelpMessage = AzureBackupCmdletHelpMessage.Retention)] public int Retention { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); if (DailyRetention != false) { AzureRMBackupRetentionPolicy retentionPolicy = new AzureBackupDailyRetentionPolicy(RetentionType.Daily.ToString(), Retention); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/RemoveAzureRMBackupProtectionPolicy.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/RemoveAzureRMBackupProtectionPolicy.cs index aeb1338a6d9b..a1e0712d986c 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/RemoveAzureRMBackupProtectionPolicy.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/RemoveAzureRMBackupProtectionPolicy.cs @@ -29,11 +29,11 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets [Cmdlet(VerbsCommon.Remove, "AzureRMBackupProtectionPolicy")] public class RemoveAzureRMBackupProtectionPolicy : AzureBackupPolicyCmdletBase { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); WriteDebug(Resources.MakingClientCall); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/SetAzureRMBackupProtectionPolicy.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/SetAzureRMBackupProtectionPolicy.cs index 58bc57f833ae..8dafba3fe20a 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/SetAzureRMBackupProtectionPolicy.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/ProtectionPolicy/SetAzureRMBackupProtectionPolicy.cs @@ -55,11 +55,11 @@ public class SetAzureRMBackupProtectionPolicy : AzureBackupPolicyCmdletBase [ValidateSet("Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday", IgnoreCase = true)] public string[] DaysOfWeek { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); WriteDebug(Resources.MakingClientCall); var response = AzureBackupClient.GetProtectionPolicyByName(ProtectionPolicy.ResourceGroupName, ProtectionPolicy.ResourceName, ProtectionPolicy.Name); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/RecoveryPoint/GetAzureRMBackupRecoveryPoint.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/RecoveryPoint/GetAzureRMBackupRecoveryPoint.cs index f70976bdb17b..d792dcf25c21 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/RecoveryPoint/GetAzureRMBackupRecoveryPoint.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/RecoveryPoint/GetAzureRMBackupRecoveryPoint.cs @@ -33,9 +33,9 @@ public class GetAzureRMBackupRecoveryPoint : AzureRMBackupDSCmdletBase [ValidateNotNullOrEmpty] public string RecoveryPointId { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { - base.ExecuteCmdlet(); + base.ProcessRecord(); ExecutionBlock(() => { diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Restore/RestoreAzureRMBackupItem.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Restore/RestoreAzureRMBackupItem.cs index 4c558243526c..128ef94e3f0c 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Restore/RestoreAzureRMBackupItem.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Restore/RestoreAzureRMBackupItem.cs @@ -35,9 +35,9 @@ public class RestoreAzureRMBackupItem : AzureBackupRestoreBase [ValidateNotNullOrEmpty] public string StorageAccountName { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { - base.ExecuteCmdlet(); + base.ProcessRecord(); ExecutionBlock(() => { diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/GetAzureRMBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/GetAzureRMBackupVault.cs index 1b421c2b9da5..90e2529f7d05 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/GetAzureRMBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/GetAzureRMBackupVault.cs @@ -36,11 +36,11 @@ public class GetAzureRMBackupVault : AzureBackupCmdletBase [ValidateNotNullOrEmpty] public string Name { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); InitializeAzureBackupCmdlet(String.Empty, String.Empty); if (ResourceGroupName != null && Name != null) diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs index aca22a655f21..d5260fbd929c 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/NewAzureRMBackupVault.cs @@ -46,11 +46,11 @@ public class NewAzureRMBackupVault : AzureBackupCmdletBase //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] //public Hashtable[] Tag { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); InitializeAzureBackupCmdlet(ResourceGroupName, Name); WriteDebug(String.Format(Resources.CreatingBackupVault, ResourceGroupName, Name)); diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureRMBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureRMBackupVault.cs index b0a64c1f1a0f..6b2018417e81 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureRMBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/RemoveAzureRMBackupVault.cs @@ -24,11 +24,11 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets [Cmdlet(VerbsCommon.Remove, "AzureRMBackupVault")] public class RemoveAzureRMBackupVault : AzureBackupVaultCmdletBase { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); if (!AzureBackupClient.DeleteVault(Vault.ResourceGroupName, Vault.Name)) { diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs index 53419e94d4ae..a5c7b7f9c2d2 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/Vault/SetAzureRMBackupVault.cs @@ -35,9 +35,9 @@ public class SetAzureRMBackupVault : AzureBackupVaultCmdletBase //[Parameter(Mandatory = false, HelpMessage = AzureBackupCmdletHelpMessage.ResourceTags)] //public Hashtable[] Tag { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { - base.ExecuteCmdlet(); + base.ProcessRecord(); ExecutionBlock(() => { diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/VaultCredentials/GetAzureRMBackupVaultCredentials.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/VaultCredentials/GetAzureRMBackupVaultCredentials.cs index d862f07d0c9e..67ebb0d7d5db 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/VaultCredentials/GetAzureRMBackupVaultCredentials.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Cmdlets/VaultCredentials/GetAzureRMBackupVaultCredentials.cs @@ -39,18 +39,18 @@ public class GetAzureRMBackupVaultCredentials : AzureBackupVaultCmdletBase private const int VaultCertificateExpiryInHoursForBackup = 48; - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ExecutionBlock(() => { - base.ExecuteCmdlet(); + base.ProcessRecord(); if (!Directory.Exists(TargetLocation)) { throw new ArgumentException(Resources.VaultCredPathException); } - string subscriptionId = Profile.DefaultSubscription.Id.ToString(); + string subscriptionId = DefaultContext.Subscription.Id.ToString(); string resourceType = "BackupVault"; string displayName = subscriptionId + "_" + Vault.ResourceGroupName + "_" + Vault.Name; diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj index eabdd858e1c2..e6a1459101e5 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Commands.AzureBackup.csproj @@ -217,13 +217,9 @@ - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - - - {4900ec4e-8deb-4412-9108-0bc52f81d457} - Commands.Utilities + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml index 453be5a0631b..e106e04e5ad7 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Microsoft.Azure.Commands.AzureBackup.dll-help.xml @@ -1,152 +1,32 @@  - - - - Enable-AzureBackupContainerReregistration - - Allow re-registration of the server to connect the server back to the vault and continue the backup points chain. - - - - - Enable - AzureBackupContainerReregistration - - - - When a server is destroyed, all its cloud backup points remain in the Azure Backup vault. If the server is rebuilt and given the same FQDN, it is possible to connect it back to the same vault. This will allow the server to continue taking backups and adding new backup points to the existing set - essentially continuing where it was left off in the backup chain. - To make this connection, the AzureBackupContainer has to be primed for "re-registration". Without this step, you can lose all the existing data as a part of the registration process. The commandlet tells the service that the next time the container is registered, it should continue the backup chain. - - - - Enable-AzureBackupContainerReregistration - - Container - - An object referencing the container for which re-registration is being requested - - AzureBackupContainer - - - Profile - - Non-mandatory AzureProfile input object - - AzureProfile - - - - - - Container - - An object referencing the container for which re-registration is being requested - - AzureBackupContainer - - AzureBackupContainer - - - - - - Profile - - Non-mandatory AzureProfile input object - - AzureProfile - - AzureProfile - - - - - - - - - AzureBackupContainer - - - - - - This section details out the type of the objects that you can pipe to the cmdlet. - - - - - - - - None - - - - - This section details out the type of the objects that the cmdlet emits. - - - - - - - - - None - - - - - - - - Get-AzureBackupContainer + Backup-AzureRMBackupItem - Retrieves one or more Azure Backup containers that match the filter criteria specified. + Trigger backup for a protected item - Get - AzureBackupContainer + Backup + AzureRMBackupItem - An AzureBackupContainer is an object that encapsulates datasources, protected items, and recovery points. An AzureBackupContainer can be one of three: -- a Windows server -- a System Center Data Protection Manager server (SCDPM) -- an Azure IaaS virtual machine - Before a datasource or item can be backed-up, the container holding it must be registered with the Azure Backup service and be authenticated to send backup data to the backup vault. For Windows and SCDPM servers, the registration is held with the FQDN of the server. + Using this commandlet is the equivalent of "Backup Now". It triggers an ad-hoc backup that is not tied to the backup schedule. This is useful in two scenarios: +1. Starting initial backup immediately after enabling protection +2. Triggering ad-hoc backup when a previous scheduled backup has failed - Get-AzureBackupContainer - - Name - - The name of the AzureBackupContainer for which an object reference will be returned. - - String - - - Type - - This determines the Type of the container that has been registered. -- For Windows servers using the Azure Backup agent directly, the type will be "Windows" -- For SCDPM servers using the Azure Backup agent in conjunction with SCDPM, the type will be "DPM" - - AzureBackupContainerType - + Backup-AzureRMBackupItem - Vault + Item - A filter for the vault object, under which the container needs to be found. + The Azure Backup item for which ad-hoc backup is being triggered - AzurePSBackupVault + AzureRMBackupItem Profile @@ -158,40 +38,14 @@ - - Name - - The name of the AzureBackupContainer for which an object reference will be returned. - - String - - String - - - - - - Type - - This determines the Type of the container that has been registered. -- For Windows servers using the Azure Backup agent directly, the type will be "Windows" -- For SCDPM servers using the Azure Backup agent in conjunction with SCDPM, the type will be "DPM" - - AzureBackupContainerType - - AzureBackupContainerType - - - - - Vault + Item - A filter for the vault object, under which the container needs to be found. + The Azure Backup item for which ad-hoc backup is being triggered - AzurePSBackupVault + AzureRMBackupItem - AzurePSBackupVault + AzureRMBackupItem @@ -208,42 +62,30 @@ - - ManagedResourceName - - The name of the container that is specified as a filter. - - string - - string - - - - - AzureBackupVault + AzureRMBackupItem - -This section details out the type of the objects that you can pipe to the cmdlet. + This section details out the type of the objects that you can pipe to the cmdlet. + - AzureBackupContainer + AzureRMBackupJob - -This section details out the type of the objects that the cmdlet emits. + This section details out the type of the objects that the cmdlet emits. + @@ -252,25 +94,23 @@ This section details out the type of the objects that the cmdlet emits. - None + When an existing backup job is running this commandlet will fail. - -------------------------- List of all Windows servers registered to the vault -------------------------- + -------------------------- Trigger backup for a virtual machine -------------------------- PS C:\> - Get-AzureBackupContainer -vault $v -type Windows + Get-AzureRMBackupItem -Container $c | Backup-AzureRMBackupItem - Gets a list of all containers of type "Windows" from the specified vault. - Name Type Status ----- ---- ------ -SERVER1.CONTOSO.COM Windows Registered -SERVER2.CONTOSO.COM Windows Registered - + + WorkloadName Operation Status StartTime EndTime +------------ --------- ------ --------- ------- +test-vm Backup InProgress 26-Aug-15 12:24:01 PM 01-Jan-01 12:00:00 AM @@ -281,19 +121,18 @@ SERVER2.CONTOSO.COM Windows Registered - -------------------------- Retrieve a specific container -------------------------- + -------------------------- Failure to trigger backup when an existing backup is running -------------------------- PS C:\> - Get-AzureBackupContainer -vault $v -type SCDPM -name "DPMSERVER.CONTOSO.COM" + Get-AzureRMBackupItem -Container $c | Backup-AzureRMBackupItem - Gets the container representing a specific DPM server registered to the specified vault. - Name Type Status ----- ---- ------ -DPMSERVER.CONTOSO.COM SCDPM Registered - + + WorkloadName Operation Status StartTime EndTime +------------ --------- ------ --------- ------- +test-vm Backup Failed 26-Aug-15 12:30:30 PM 26-Aug-15 12:30:30 PM @@ -310,36 +149,36 @@ DPMSERVER.CONTOSO.COM SCDPM Registered - Get-AzureBackupVault + Disable-AzureRMBackupProtection - Retrieves one or more vault objects based on the parameters that are specified. + Disable protection for a protected item - Get - AzureBackupVault + Disable + AzureRMBackupProtection - The Get-AzureBackupVault commandlet retrieves existing Azure Backup vaults and returns objects of type AzurePSBackupVault. The vault object is used in some Azure Backup commandlets as a mandatory parameter. + To stop regular scheduled backup of a backup item and to delete existing recovery points associated with the backup item. - Get-AzureBackupVault - - ResourceGroupName + Disable-AzureRMBackupProtection + + RemoveRecoveryPoints - The Azure resource group under which the vault was created. + An optional switch parameter that deletes the recovery points data associated with a backup item. It is possible to disable backup and keep the recovery points data by NOT supplying this parameter. At a later point the same commandlet can be used to delete the data - String + SwitchParameter - - Name + + Item - The name of the specific Azure Backup vault that needs to be retrieved. If no name is specified, then the commandlet returns all the vaults created by the subscription. If there is more than 1 backup vault with the same name then the commandlet returns all the vaults that match the name. Use the -ResourceGroupName parameter to filter results and get a unique vault. + The Azure Backup item for which protection is being disabled. - String + AzureRMBackupItem Profile @@ -351,26 +190,26 @@ DPMSERVER.CONTOSO.COM SCDPM Registered - - ResourceGroupName + + RemoveRecoveryPoints - The Azure resource group under which the vault was created. + An optional switch parameter that deletes the recovery points data associated with a backup item. It is possible to disable backup and keep the recovery points data by NOT supplying this parameter. At a later point the same commandlet can be used to delete the data - String + SwitchParameter - String + SwitchParameter - - Name + + Item - The name of the specific Azure Backup vault that needs to be retrieved. If no name is specified, then the commandlet returns all the vaults created by the subscription. If there is more than 1 backup vault with the same name then the commandlet returns all the vaults that match the name. Use the -ResourceGroupName parameter to filter results and get a unique vault. + The Azure Backup item for which protection is being disabled. - String + AzureRMBackupItem - String + AzureRMBackupItem @@ -387,30 +226,52 @@ DPMSERVER.CONTOSO.COM SCDPM Registered + + Reason + + + + string + + string + + + + + + Comments + + + + string + + string + + + + - Vault name as [String] + AzureRMBackupItem - -This section details out the type of the objects that you can pipe to the cmdlet. + This section details out the type of the objects that you can pipe to the cmdlet. - Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + AzureRMBackupJob - -This section details out the type of the objects that the cmdlet emits. + This section details out the type of the objects that the cmdlet emits. @@ -423,149 +284,37 @@ This section details out the type of the objects that the cmdlet emits. - - -------------------------- View all the Azure Backup vaults created -------------------------- - - PS C:\> - - Get-AzureBackupVault - - - - - - - - - - - - - - - - -------------------------- Get a list of all vaults created in West US -------------------------- - - PS C:\> - - Get-AzureBackupVault | Where-Object { $_.Region -eq "westus" } - - - - - - - - - - - - - - - - -------------------------- Get a reference to a specific vault -------------------------- - - PS C:\> - - Get-AzureBackupVault -Name "myvault" - - - - - ResourceId : /subscriptions/4bfbe168-f42a-4a06-8f5a-331cad1f497e/resourceGroups/rg1/providers/Microsoft.Backup - /BackupVault/myvault -Name : myvault -ResourceGroupName : rg1 -Region : westus -Storage : GeoRedundant - - - - - - - - - - - -------------------------- Count the number of vaults having Locally Redundant Storage -------------------------- - - PS C:\> - - Get-AzureBackupVault | Where-Object { $_.Storage –match ‘LocallyRedundant’ } | Measure-Object - - - - - Count : 4 -Average : -Sum : -Maximum : -Minimum : -Property : - - - - - - - - - - - New-AzureBackupVault - - - - Set-AzureBackupVault - - - - Remove-AzureBackupVault - - - - Get-AzureBackupContainer - - - Get-AzureBackupVaultCredentials + Enable-AzureRMBackupContainerReregistration - Downloads the Vault Credentials file to a specified location. + Allow re-registration of the server to connect the server back to the vault and continue the backup points chain. - Get - AzureBackupVaultCredentials + Enable + AzureRMBackupContainerReregistration - To enable hybrid backup scenarios the Vault Credentials file is a critical component. The vault credential file is used to connect a server to the Azure Backup vault and register it. Only after registration can backup data be sent to the vault. The Get-AzureBackupVaultCredentials commandlet downloads and places a vault credential file at the location specified by the user. + When a server is destroyed, all its cloud backup points remain in the Azure Backup vault. If the server is rebuilt and given the same FQDN, it is possible to connect it back to the same vault. This will allow the server to continue taking backups and adding new backup points to the existing set - essentially continuing where it was left off in the backup chain. + To make this connection, the AzureBackupContainer has to be primed for "re-registration". Without this step, you can lose all the existing data as a part of the registration process. The commandlet tells the service that the next time the container is registered, it should continue the backup chain. - Get-AzureBackupVaultCredentials - - TargetLocation - - The destination path where the Vault Credentials file should be placed. - - String - + Enable-AzureRMBackupContainerReregistration - Vault + Container - The specific Azure Backup vault object for which the Vault Credential file is generated. + An object referencing the container for which re-registration is being requested - AzurePSBackupVault + AzureRMBackupContainer Profile @@ -577,26 +326,132 @@ Property : - - TargetLocation + + Container - The destination path where the Vault Credentials file should be placed. + An object referencing the container for which re-registration is being requested - String + AzureRMBackupContainer - String + AzureRMBackupContainer - - Vault + + Profile - The specific Azure Backup vault object for which the Vault Credential file is generated. + Non-mandatory AzureProfile input object - AzurePSBackupVault + AzureProfile + + AzureProfile + + + + + + + + + AzureBackupContainer + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + None + + + + + + + + + + + + + + None + + + + + + + + + + + Enable-AzureRMBackupProtection + + Associate an item with a protection policy + + + + + Enable + AzureRMBackupProtection + + + + Enabling protection involves two key entities - the AzureRMBackupItem and the AzureRMBackupProtectionPolicy. Both need to belong to the same vault. The backup schedule will take care of doing the full initial copy for the item and the incremental copy for the subsequent backups. + + + + Enable-AzureRMBackupProtection + + Policy + + The Azure Backup protection policy that will be associated with the item. + + AzureRMBackupProtectionPolicy + + + Item + + The Azure Backup item object for which protection is being enabled. + + AzureRMBackupContainerContextObject + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Policy + + The Azure Backup protection policy that will be associated with the item. + + AzureRMBackupProtectionPolicy + + AzureRMBackupProtectionPolicy + + + + + + Item + + The Azure Backup item object for which protection is being enabled. + + AzureRMBackupContainerContextObject - AzurePSBackupVault + AzureRMBackupContainerContextObject @@ -617,7 +472,7 @@ Property : - Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + AzureRMBackupItem @@ -629,7 +484,7 @@ Property : - Vault Credentials file name as [String] + AzureRMBackupJob @@ -648,16 +503,18 @@ Property : - -------------------------- Download a Vault Credentials file -------------------------- + -------------------------- Enable protection on an Azure VM -------------------------- PS C:\> - Get-AzureBackupVaultCredentials -Vault $vaultobj -TargetLocation "C:\users\admin\Desktop" + Get-AzureRMBackupContainer -Type AzureVM -Status Registered -Vault $v | Get-AzureRMBackupItem | Enable-AzureRMBackupProtection -Policy $policies[0] - This will place the vault credentials file at the user-specified location. - f5303a0b-fae4-4cdb-b44d-0e4c032dde26_backuprg_backuprn_2015-06-7--06-22-35.VaultCredentials + + WorkloadName Operation Status StartTime EndTime +------------ --------- ------ --------- ------- +test-vm ConfigureBackup Completed 26-Aug-15 12:19:49 PM 26-Aug-15 12:19:54 PM @@ -669,55 +526,78 @@ Property : + + Get-AzureRMBackupItem + + + + Get-AzureRMBackupProtectionPolicy + + + + Backup-AzureRMBackupItem + + - New-AzureBackupVault + Get-AzureRMBackupContainer - Creates a new Azure Backup vault based on the parameters that are specified. A vault is the start point for all backup operations with Azure Backup. + Retrieves one or more Azure Backup containers that match the filter criteria specified. - New - AzureBackupVault + Get + AzureRMBackupContainer - The New-AzureBackupVault commandlet creates and Azure Backup vault and returns an object of type AzurePSBackupVault that acts as a reference to the vault entity. The vault has some important properties that define the scope of backup – the region and the storage type. + An AzureBackupContainer is an object that encapsulates datasources, protected items, and recovery points. An AzureBackupContainer can be one of three: +- a Windows server +- a System Center Data Protection Manager server (SCDPM) +- an Azure IaaS virtual machine + Before a datasource or item can be backed-up, the container holding it must be registered with the Azure Backup service and be authenticated to send backup data to the backup vault. For Windows and SCDPM servers, the registration is held with the FQDN of the server. - New-AzureBackupVault - - ResourceGroupName + Get-AzureRMBackupContainer + + Name - Specifies the name of an existing resource group. In order to create a resource group, use the New-AzureResourceGroup commandlet. There is no requirement that the Azure ResourceGroup and the Azure Backup vault be in the same region. + Name of the container to be retrieved. String - - Name + + Type - Specifies the name of the Azure Backup vault. The combination of ResourceGroupName and Name must be unique. You cannot create two vaults with the same name under the same ResourceGroup, but two vaults with the same name can be placed under two different Resource Groups. + Type of the container. Currently supported types are Windows - String + AzureBackupContainerType - - Region + + ManagedResourceGroupName - The region parameter places the vault object into a specific Azure region. For hybrid backup scenarios, it is advised to create a vault in a region close to the on-premise server to reduce latency. For backup of Azure IaaS virtual machines, the vault becomes the point of discovery for local virtual machines. + The resource group name associated with the container. When registering the container this input would have been provided using the -ServiceName or the -ResourceGroupName parameter. String - - Storage + + Status - Backup storage is billed at Azure Storage rates and users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. Since this is an optional parameter, if it is not specified then the vault is created with the GeoRedundant Storage option. + The current status of the container object. Supported values are: NotRegistered, Registered, Registering, - AzureBackupVaultStorageType + AzureBackupContainerRegistrationStatus + + + Vault + + The Azure Backup vault from to which the container is associated. + + AzureRMBackupVault Profile @@ -729,10 +609,10 @@ Property : - - ResourceGroupName + + Name - Specifies the name of an existing resource group. In order to create a resource group, use the New-AzureResourceGroup commandlet. There is no requirement that the Azure ResourceGroup and the Azure Backup vault be in the same region. + Name of the container to be retrieved. String @@ -741,22 +621,22 @@ Property : - - Name + + Type - Specifies the name of the Azure Backup vault. The combination of ResourceGroupName and Name must be unique. You cannot create two vaults with the same name under the same ResourceGroup, but two vaults with the same name can be placed under two different Resource Groups. + Type of the container. Currently supported types are Windows - String + AzureBackupContainerType - String + AzureBackupContainerType - - Region + + ManagedResourceGroupName - The region parameter places the vault object into a specific Azure region. For hybrid backup scenarios, it is advised to create a vault in a region close to the on-premise server to reduce latency. For backup of Azure IaaS virtual machines, the vault becomes the point of discovery for local virtual machines. + The resource group name associated with the container. When registering the container this input would have been provided using the -ServiceName or the -ResourceGroupName parameter. String @@ -765,14 +645,26 @@ Property : - - Storage + + Status - Backup storage is billed at Azure Storage rates and users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. Since this is an optional parameter, if it is not specified then the vault is created with the GeoRedundant Storage option. + The current status of the container object. Supported values are: NotRegistered, Registered, Registering, - AzureBackupVaultStorageType + AzureBackupContainerRegistrationStatus - AzureBackupVaultStorageType + AzureBackupContainerRegistrationStatus + + + + + + Vault + + The Azure Backup vault from to which the container is associated. + + AzureRMBackupVault + + AzureRMBackupVault @@ -793,26 +685,24 @@ Property : - None + AzureBackupVault - -This section details out the type of the objects that you can pipe to the cmdlet. + This section details out the type of the objects that you can pipe to the cmdlet. - Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + AzureBackupContainer - -This section details out the type of the objects that the cmdlet emits. + This section details out the type of the objects that the cmdlet emits. @@ -826,21 +716,41 @@ This section details out the type of the objects that the cmdlet emits. - -------------------------- Create a new backup vault -------------------------- + -------------------------- List of all Windows servers registered to the vault -------------------------- PS C:\> - New-AzureBackupVault –ResourceGroupName “rg1” –Name “vault1” –Region “westus” + Get-AzureBackupContainer -vault $v -type Windows + Gets a list of all containers of type "Windows" from the specified vault. + Name Type Status +---- ---- ------ +SERVER1.CONTOSO.COM Windows Registered +SERVER2.CONTOSO.COM Windows Registered + + + + + + + + + + + -------------------------- Retrieve a specific container -------------------------- + + PS C:\> + + Get-AzureBackupContainer -vault $v -type SCDPM -name "DPMSERVER.CONTOSO.COM" + + Gets the container representing a specific DPM server registered to the specified vault. + - ResourceId : /subscriptions/4bfbe168-f42a-4a06-8f5a-331cad1f497e/resourceGroups/rg1/providers/Microsoft.Backup - /BackupVault/vault1 -Name : vault1 -ResourceGroupName : rg1 -Region : westus -Storage : GeoRedundant + Name Type Status +---- ---- ------ +DPMSERVER.CONTOSO.COM SCDPM Registered @@ -851,21 +761,18 @@ Storage : GeoRedundant - -------------------------- Create a new backup vault with Locally Redundant Storage -------------------------- + -------------------------- List all registered Azure VMs -------------------------- PS C:\> - New-AzureBackupVault –ResourceGroupName “rg2” –Name “vault2” –Region “westus” –Storage LocallyRedundant + Get-AzureRMBackupContainer -Type AzureVM -Status Registered -Vault $v - ResourceId : /subscriptions/4bfbe168-f42a-4a06-8f5a-331cad1f497e/resourceGroups/rg2/providers/Microsoft.Backup - /BackupVault/vault2 -Name : vault2 -ResourceGroupName : rg2 -Region : westus -Storage : LocallyRedundant + Name Type Status +---- ---- ------ +test-vm AzureVM Registered @@ -878,19 +785,3451 @@ Storage : LocallyRedundant - New-AzureResourceGroup - https://msdn.microsoft.com/en-us/library/dn654594.aspx - - - Get-AzureBackupVault - - - - Set-AzureBackupVault - - - - Remove-AzureBackupVault + Register-AzureRMBackupContainer + + + + Unregister-AzureRMBackupContainer + + + + + + + + Get-AzureRMBackupItem + + Gets the items under a container + + + + + Get + AzureRMBackupItem + + + + A container registered to the Azure Backup vault can have one or more items that can be protected. These items are enabled for protection using the Enable-AzureRMBackupProtection commandlet. This commandlet gets all the items under the container and their protection status. + + + + Get-AzureRMBackupItem + + ProtectionStatus + + The overall protection status of the item in the container. Supported values are: Protected, Protecting. + + String + + + Status + + The backup status for the item. Supported values are: IRPending, Protected, ProtectionError, ProtectionStopped. This is a sub-status that can be used as a filter for items that have -ProtectionStatus as Protected. + + String + + + Type + + The type of item that is being requested. Supported values: AzureVM + + String + + + Container + + The parent container object for which we are querying the items. Use the Get-AzureRMBackupContainer commandlet to get the list of containers in the vault. + + AzureRMBackupContainer + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + ProtectionStatus + + The overall protection status of the item in the container. Supported values are: Protected, Protecting. + + String + + String + + + + + + Status + + The backup status for the item. Supported values are: IRPending, Protected, ProtectionError, ProtectionStopped. This is a sub-status that can be used as a filter for items that have -ProtectionStatus as Protected. + + String + + String + + + + + + Type + + The type of item that is being requested. Supported values: AzureVM + + String + + String + + + + + + Container + + The parent container object for which we are querying the items. Use the Get-AzureRMBackupContainer commandlet to get the list of containers in the vault. + + AzureRMBackupContainer + + AzureRMBackupContainer + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + AzureRMBackupContainer + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + AzureRMBackupItem + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + For Azure VMs, there is only one item under the registered VM container. + + + + + -------------------------- Get a list of all items in a container -------------------------- + + PS C:\> + + Get-AzureRMBackupContainer -Type AzureVM -Name "test-vm" -Vault $v | Get-AzureRMBackupItem + + + + + Name ProtectionStatus DataSourceStatus RecoveryPointsCount ProtectionPolicyName +---- ---------------- ---------------- ------------------- -------------------- +test-vm NotProtected 0 + + + + + + + + + + + -------------------------- See all the fields for an item -------------------------- + + PS C:\> + + Get-AzureRMBackupItem -Container $c | select * + + + + + Name : test-vm +DataSourceStatus : +ProtectionStatus : NotProtected +Type : AzureVM +ProtectionPolicyName : +ProtectionPolicyId : +RecoveryPointsCount : 0 +ItemName : iaasvmcontainer;test-vm;test-vm +ContainerType : AzureVM +ContainerUniqueName : iaasvmcontainer;test-vm;test-vm +ResourceGroupName : test-rg +ResourceName : test-vault +Location : southeastasia + + + + + + + + + + + + + Restore-AzureRMBackupItem + + + + Get-AzureRMBackupContainer + + + + Enable-AzureRMBackupProtection + + + + Backup-AzureRMBackupItem + + + + Disable-AzureRMBackupProtection + + + + + + + + Get-AzureRMBackupJob + + Retrieves a list of jobs or a specific job + + + + + Get + AzureRMBackupJob + + + + This commandlet gets the Azure Backup jobs that match the filter criteria specified. The jobs returned are restricted to the Azure Backup vault. + + + + Get-AzureRMBackupJob + + Vault + + The specific Azure Backup vault object for which the jobs are being retrieved. The vault is the parent container for an Azure Backup job, and any given job must be a part of a specified vault. Use the Get-AzureRMBackupVault to get a list of vaults. + + AzureRMBackupVault + + + JobId + + The unique identifier for the Azure Backup job. + + String + + + From + + A time range is specified to filter the list of jobs returned from the Azure Backup service. This parameter specifies the start time for the time range. + When this parameter is not specified, the default is _____ + When the -To parameter is used the -From parameter is mandatory. + + Nullable`1[DateTime] + + + To + + A time range is specified to filter the list of jobs returned from the Azure Backup service. This parameter specifies the end time for the time range. + When this parameter is not specified, the default vault is the current system date/time. + + Nullable`1[DateTime] + + + Status + + A filter value to get jobs with the specified status. Typically the status field is used to get InProgress and Failed jobs. + Supported values: +- InProgress +- Failed +- Cancelled +- Cancelling +- Completed +- CompletedWithWarnings + + String + + + Type + + The type of container that is used as a filter. The only supported item currently is AzureVM. + + String + + + Operation + + A filter that describes the specific operation for which the jobs will be retrieved. + Supported values: +- Backup +- ConfigureBackup +- DeleteBackupData +- Register +- Restore +- UnProtect +- Unregister + + String + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + Get-AzureRMBackupJob + + Job + + When you use the -Job parameter, the commandlet fetches the latest status for the job. Identifying the job is done using the details provided in the input object. This input object would also have been returned earlier from Get-AzureRMBackupJob. + + AzureRMBackupJob + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Vault + + The specific Azure Backup vault object for which the jobs are being retrieved. The vault is the parent container for an Azure Backup job, and any given job must be a part of a specified vault. Use the Get-AzureRMBackupVault to get a list of vaults. + + AzureRMBackupVault + + AzureRMBackupVault + + + + + + JobId + + The unique identifier for the Azure Backup job. + + String + + String + + + + + + From + + A time range is specified to filter the list of jobs returned from the Azure Backup service. This parameter specifies the start time for the time range. + When this parameter is not specified, the default is _____ + When the -To parameter is used the -From parameter is mandatory. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + To + + A time range is specified to filter the list of jobs returned from the Azure Backup service. This parameter specifies the end time for the time range. + When this parameter is not specified, the default vault is the current system date/time. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + Status + + A filter value to get jobs with the specified status. Typically the status field is used to get InProgress and Failed jobs. + Supported values: +- InProgress +- Failed +- Cancelled +- Cancelling +- Completed +- CompletedWithWarnings + + String + + String + + + + + + Type + + The type of container that is used as a filter. The only supported item currently is AzureVM. + + String + + String + + + + + + Operation + + A filter that describes the specific operation for which the jobs will be retrieved. + Supported values: +- Backup +- ConfigureBackup +- DeleteBackupData +- Register +- Restore +- UnProtect +- Unregister + + String + + String + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + Job + + When you use the -Job parameter, the commandlet fetches the latest status for the job. Identifying the job is done using the details provided in the input object. This input object would also have been returned earlier from Get-AzureRMBackupJob. + + AzureRMBackupJob + + AzureRMBackupJob + + + + + + + + + AzureRMBackupVault + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + AzureRMBackupJob object (or) +Array of AzureRMBackupJob objects + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- Retrieve a list of jobs from the backup vault -------------------------- + + PS C:\> + + Get-AzureRMBackupJob -Vault $v + + + + + WorkloadName Operation Status StartTime EndTime +------------ --------- ------ --------- ------- +test-vm Backup InProgress 26-Aug-15 12:24:01 PM 01-Jan-01 12:00:00 AM +test-vm ConfigureBackup Completed 26-Aug-15 12:19:49 PM 26-Aug-15 12:19:54 PM +test-vm Register Completed 25-Aug-15 3:23:53 PM 25-Aug-15 3:25:00 PM + + + + + + + + + + + -------------------------- Retrieve a list of completed jobs -------------------------- + + PS C:\> + + Get-AzureRMBackupJob -Vault $v -Status Completed + + + + + WorkloadName Operation Status StartTime EndTime +------------ --------- ------ --------- ------- +test-vm Register Completed 25-Aug-15 3:23:53 PM 25-Aug-15 3:25:00 PM + + + + + + + + + + + -------------------------- Retrieve a list of failed jobs for the last 1 week -------------------------- + + PS C:\> + + Get-AzureRMBackupJob -Vault $v -From (Get-Date).AddDays(-7) -Status Failed + + + + + + + + + + + + + + + + -------------------------- Poll the service for a change in the job status -------------------------- + + PS C:\> + + $joblist = Get-AzureRMBackupJob -Vault $v -Status InProgress +$job = $joblist[0] + +while ( $job.Status -ne Completed ) +{ + Write-Host "Waiting for completion..." + Start-Sleep -s 10 + $job = Get-AzureRMBackupJob -Vault $v -Job $job +} +Write-Host "Done!" + + + + + Waiting for completion... +Waiting for completion... +Waiting for completion... +Done! + + + + + + + + + + + + + + + + + Get-AzureRMBackupJobDetails + + Get the details of a job + + + + + Get + AzureRMBackupJobDetails + + + + When a job has failed, the Azure Backup service typically logs more information for debugging purposes. The detailed job information can be retrieved using this commandlet + + + + Get-AzureRMBackupJobDetails + + Job + + The job object for which details are to be retrieved + + AzureRMBackupJob + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + Get-AzureRMBackupJobDetails + + Vault + + The Azure Backup vault under which the job can be found. + + AzureRMBackupVault + + + JobId + + The unique identifier for the job, for which the details are to be retrieved. + + String + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Job + + The job object for which details are to be retrieved + + AzureRMBackupJob + + AzureRMBackupJob + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + Vault + + The Azure Backup vault under which the job can be found. + + AzureRMBackupVault + + AzureRMBackupVault + + + + + + JobId + + The unique identifier for the job, for which the details are to be retrieved. + + String + + String + + + + + + + + + None + + + + + + + + + + + + + AzureRMBackupJobDetails + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- Get the details of a failed job -------------------------- + + PS C:\> + + $jd = Get-AzureRMBackupJobDetails -Job $j +PS C:\> $jd.ErrorDetails + + + + + + ErrorCode ErrorMessage Recommendations +--------- ------------ --------------- + 400001 Command execution failed. {Another operation is currently in p... + + + + + + + + + + + -------------------------- Get the recommended action for a failed job -------------------------- + + PS C:\> + + $jd.ErrorDetails.Recommendations + + + + + Another operation is currently in progress on this item. Please wait until the previous operation is completed, and then retry. + + + + + + + + + + + + + + + + + Get-AzureRMBackupProtectionPolicy + + Fetches the backup policies in a backup vault + + + + + Get + AzureRMBackupProtectionPolicy + + + + The backup policy is used in the Enable-AzureRMBackupProtection commandlet to enable protection on an item. The policy must be created using the New-AzureRMBackupProtectionPolicy commandlet, or an existing policy can be used. This commandlet gets the list of existing policies in the backup vault. + + + + Get-AzureRMBackupProtectionPolicy + + Name + + The name of the specific policy. Since policy names are unique within a vault, the name is sufficient to identify a policy. + + String + + + Vault + + The Azure Backup vault under which the policy has been created. + + AzureRMBackupVault + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Name + + The name of the specific policy. Since policy names are unique within a vault, the name is sufficient to identify a policy. + + String + + String + + + + + + Vault + + The Azure Backup vault under which the policy has been created. + + AzureRMBackupVault + + AzureRMBackupVault + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + AzureRMBackupVault + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + AzureRMBackupProtectionPolicy + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- Get the list of policies in a vault -------------------------- + + PS C:\> + + Get-AzureRMBackupProtectionPolicy -Vault $v + + + + + Name Type ScheduleType BackupTime +---- ---- ------------ ---------- +test01 AzureVM Daily 26-Aug-15 3:00:00 PM +DailyBkp AzureVM Daily 26-Aug-15 3:00:00 PM +DefaultPolicy AzureVM Daily 26-Aug-15 12:30:00 AM +WeeklyBkp AzureVM Weekly 26-Aug-15 5:00:00 PM +test2 AzureVM Daily 26-Aug-15 3:00:00 PM + + + + + + + + + + + -------------------------- Get a specific policy from a vault -------------------------- + + PS C:\> + + Get-AzureRMBackupProtectionPolicy -Vault $v -Name DefaultPolicy + + + + + Name Type ScheduleType BackupTime +---- ---- ------------ ---------- +DefaultPolicy AzureVM Daily 26-Aug-15 12:30:00 AM + + + + + + + + + + + + + New-AzureRMBackupProtectionPolicy + + + + Enable-AzureRMBackupProtection + + + + Remove-AzureRMBackupProtectionPolicy + + + + + + + + Get-AzureRMBackupRecoveryPoint + + Get the recovery point(s) for a backed-up item + + + + + Get + AzureRMBackupRecoveryPoint + + + + Once an item has been backed up, it will have one or more recovery points. This commandlet gets a list of the recovery points + + + + Get-AzureRMBackupRecoveryPoint + + RecoveryPointId + + The ID to retrieve a specific recovery point for an item + + String + + + Item + + The item object for which the recovery points are being queried. + + AzureRMBackupItem + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + RecoveryPointId + + The ID to retrieve a specific recovery point for an item + + String + + String + + + + + + Item + + The item object for which the recovery points are being queried. + + AzureRMBackupItem + + AzureRMBackupItem + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + AzureRMBackupItem + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + AzureRMBackupRecoveryPoint + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + + + + + + + -------------------------- Get a list of recovery points for an item -------------------------- + + PS C:\> + + Get-AzureRMBackupRecoveryPoint -Item $backupitem + + + + + RecoveryPointId RecoveryPointType RecoveryPointTime ContainerName +--------------- ----------------- ----------------- ------------- +15273496567119 AppConsistent 26-Aug-15 12:27:38 PM iaasvmcontainer;aashish-vm;aashis... + + + + + + + + + + + + + + + + + Get-AzureRMBackupVault + + Retrieves one or more vault objects based on the parameters that are specified. + + + + + Get + AzureRMBackupVault + + + + The Get-AzureRMBackupVault commandlet retrieves existing Azure Backup vaults and returns objects of type AzurePSBackupVault. The vault object is used in some Azure Backup commandlets as a mandatory parameter. + + + + Get-AzureRMBackupVault + + ResourceGroupName + + The Azure resource group under which the vault was created. + + String + + + Name + + The name of the specific Azure Backup vault that needs to be retrieved. If no name is specified, then the commandlet returns all the vaults created by the subscription. If there is more than 1 backup vault with the same name then the commandlet returns all the vaults that match the name. Use the -ResourceGroupName parameter to filter results and get a unique vault. + + String + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + ResourceGroupName + + The Azure resource group under which the vault was created. + + String + + String + + + + + + Name + + The name of the specific Azure Backup vault that needs to be retrieved. If no name is specified, then the commandlet returns all the vaults created by the subscription. If there is more than 1 backup vault with the same name then the commandlet returns all the vaults that match the name. Use the -ResourceGroupName parameter to filter results and get a unique vault. + + String + + String + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + Vault name as [String] + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + AzureRMBackupVault + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- View all the Azure Backup vaults created -------------------------- + + PS C:\> + + Get-AzureBackupVault + + + + + + + + + + + + + + + + -------------------------- Get a list of all vaults created in West US -------------------------- + + PS C:\> + + Get-AzureBackupVault | Where-Object { $_.Region -eq "westus" } + + + + + + + + + + + + + + + + -------------------------- Get a reference to a specific vault -------------------------- + + PS C:\> + + Get-AzureBackupVault -Name "myvault" + + + + + ResourceId : /subscriptions/4bfbe168-f42a-4a06-8f5a-331cad1f497e/resourceGroups/rg1/providers/Microsoft.Backup + /BackupVault/myvault +Name : myvault +ResourceGroupName : rg1 +Region : westus +Storage : GeoRedundant + + + + + + + + + + + -------------------------- Count the number of vaults having Locally Redundant Storage -------------------------- + + PS C:\> + + Get-AzureBackupVault | Where-Object { $_.Storage –match ‘LocallyRedundant’ } | Measure-Object + + + + + Count : 4 +Average : +Sum : +Maximum : +Minimum : +Property : + + + + + + + + + + + + + New-AzureRMBackupVault + + + + Set-AzureRMBackupVault + + + + Remove-AzureRMBackupVault + + + + Get-AzureRMBackupContainer + + + + + + + + Get-AzureRMBackupVaultCredentials + + Downloads the Vault Credentials file to a specified location. + + + + + Get + AzureRMBackupVaultCredentials + + + + To enable hybrid backup scenarios the Vault Credentials file is a critical component. The vault credential file is used to connect a server to the Azure Backup vault and register it. Only after registration can backup data be sent to the vault. The Get-AzureRMBackupVaultCredentials commandlet downloads and places a vault credential file at the location specified by the user. + + + + Get-AzureRMBackupVaultCredentials + + TargetLocation + + The destination path where the Vault Credentials file should be placed. + + String + + + Vault + + The specific Azure Backup vault object for which the Vault Credential file is generated. Use the Get-AzureRMBackupVault to get a list of vaults. + + AzureRMBackupVault + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + TargetLocation + + The destination path where the Vault Credentials file should be placed. + + String + + String + + + + + + Vault + + The specific Azure Backup vault object for which the Vault Credential file is generated. Use the Get-AzureRMBackupVault to get a list of vaults. + + AzureRMBackupVault + + AzureRMBackupVault + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + AzureRMBackupVault + + + + + +This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + Vault Credentials file name as [String] + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + + + + + + + New-AzureRMBackupProtectionPolicy + + Creates a PowerShell object that holds backup policy information + + + + + New + AzureRMBackupProtectionPolicy + + + + A backup policy defines when and how often the backup of an item is done. This commandlet creates a PowerShell object that holds backup policy information. The backup policy is used as an input to the Enable-AzureRMBackupProtection commandlet. + There are 4 types of retention - Daily, Weekly, Monthly, and Yearly. You need to create one object for each type of retention that you plan to use. + + + + New-AzureRMBackupProtectionPolicy + + Name + + The name of the backup policy. It should be unique within a vault. + + String + + + Type + + The type of backup item on which the policy can be applied. Currently, the only supported value for is AzureVM. + + String + + + BackupTime + + The time of the day when backup should be triggered. + + DateTime + + + DaysOfWeek + + Specifies one or more days of the week when backup will be triggered at the time specified using the -BackupTime option. This parameter needs to be used with the -Weekly flag. + + String[] + + + RetentionPolicy + + A list of one or more retention policies that are associated with this backup policy. Use the New-AzureRMBackupRetentionPolicyObject to create retention policies. + + AzureRMBackupRetentionPolicy[] + + + Vault + + The Azure Backup vault that is the parent for the backup policy. + + AzureRMBackupVault + + + Profile + + Non-mandatory AzureProfile input object. + + AzureProfile + + + + New-AzureRMBackupProtectionPolicy + + Name + + The name of the backup policy. It should be unique within a vault. + + String + + + Type + + The type of backup item on which the policy can be applied. Currently, the only supported value for is AzureVM. + + String + + + Daily + + A flag for indicating that the backup policy will be triggered daily. + + SwitchParameter + + + BackupTime + + The time of the day when backup should be triggered. + + DateTime + + + RetentionPolicy + + A list of one or more retention policies that are associated with this backup policy. Use the New-AzureRMBackupRetentionPolicyObject to create retention policies. + + AzureRMBackupRetentionPolicy[] + + + Vault + + The Azure Backup vault that is the parent for the backup policy. + + AzureRMBackupVault + + + Profile + + Non-mandatory AzureProfile input object. + + AzureProfile + + + + New-AzureRMBackupProtectionPolicy + + Name + + The name of the backup policy. It should be unique within a vault. + + String + + + Type + + The type of backup item on which the policy can be applied. Currently, the only supported value for is AzureVM. + + String + + + Weekly + + A flag for indicating that the backup policy will be triggered on one more days of the week. + + SwitchParameter + + + BackupTime + + The time of the day when backup should be triggered. + + DateTime + + + DaysOfWeek + + Specifies one or more days of the week when backup will be triggered at the time specified using the -BackupTime option. This parameter needs to be used with the -Weekly flag. + + String[] + + + RetentionPolicy + + A list of one or more retention policies that are associated with this backup policy. Use the New-AzureRMBackupRetentionPolicyObject to create retention policies. + + AzureRMBackupRetentionPolicy[] + + + Vault + + The Azure Backup vault that is the parent for the backup policy. + + AzureRMBackupVault + + + Profile + + Non-mandatory AzureProfile input object. + + AzureProfile + + + + + + Name + + The name of the backup policy. It should be unique within a vault. + + String + + String + + + + + + Type + + The type of backup item on which the policy can be applied. Currently, the only supported value for is AzureVM. + + String + + String + + + + + + BackupTime + + The time of the day when backup should be triggered. + + DateTime + + DateTime + + + + + + DaysOfWeek + + Specifies one or more days of the week when backup will be triggered at the time specified using the -BackupTime option. This parameter needs to be used with the -Weekly flag. + + String[] + + String[] + + + + + + RetentionPolicy + + A list of one or more retention policies that are associated with this backup policy. Use the New-AzureRMBackupRetentionPolicyObject to create retention policies. + + AzureRMBackupRetentionPolicy[] + + AzureRMBackupRetentionPolicy[] + + + + + + Vault + + The Azure Backup vault that is the parent for the backup policy. + + AzureRMBackupVault + + AzureRMBackupVault + + + + + + Profile + + Non-mandatory AzureProfile input object. + + AzureProfile + + AzureProfile + + + + + + Daily + + A flag for indicating that the backup policy will be triggered daily. + + SwitchParameter + + SwitchParameter + + + + + + Weekly + + A flag for indicating that the backup policy will be triggered on one more days of the week. + + SwitchParameter + + SwitchParameter + + + + + + + + + None + + + + + + + + + + + + + AzureRMBackupProtectionPolicy + + + + + This section details out the type of the objects that the cmdlet emits + + + + + + + + + None + + + + + -------------------------- Create a daily backup policy with daily and monthly retention -------------------------- + + PS C:\> + + $bp = New-AzureRMBackupProtectionPolicy -Name DailyBackup01 -Type AzureVM -Daily -BackupTime ([datetime]"3:30 PM") -RetentionPolicy ($Daily,$Monthly) -Vault $v + + + The backup policy in this example has a daily backup time of 3:00 PM, and the backup data is stored as per the $Daily and $Monthly retention policies created using the New-AzureRMBackupRetentionPolicyObject commandlet. + + + Name Type ScheduleType BackupTime +---- ---- ------------ ---------- +DailyBkp AzureVM Daily 26-Aug-15 3:00:00 PM + + + + + + + + + + + + + New-AzureRMBackupRetentionPolicyObject + + + + Enable-AzureRMBackupProtection + + + + Get-AzureRMBackupProtectionPolicy + + + + Set-AzureRMBackupProtectionPolicy + + + + Remove-AzureRMBackupProtectionPolicy + + + + + + + + New-AzureRMBackupRetentionPolicyObject + + Creates a PowerShell object that holds retention policy information + + + + + New + AzureRMBackupRetentionPolicyObject + + + + A backup policy is associated with at least one retention policy. The retention policy defines how long a recovery point is kept with Azure Backup. This commandlet creates PowerShell objects that hold retention policy information. These retention policy objects are used as inputs to the New-AzureRMBackupProtectionPolicy commandlet, or directly with the Enable-AzureRMBackupProtection commandlet. + There are 4 types of retention - Daily, Weekly, Monthly, and Yearly. You need to create one object for each type of retention that you plan to use. + + + + New-AzureRMBackupRetentionPolicyObject + + DailyRetention + + Switch parameter that creates an object with Daily retention information. + + SwitchParameter + + + Retention + + The retention period for which the backup point will be stored. This unit depends on the switch option specified in the commandlet. For example, if you are using the -DailyRetention flag then this value specifies the retention in days. Or if you are using the -MonthlyRetentionInDailyFormat flag then this value specifies the retention in months. + + Int32 + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + New-AzureRMBackupRetentionPolicyObject + + WeeklyRetention + + Switch parameter that creates an object with Weekly retention information. + + SwitchParameter + + + DaysOfWeek + + The days of the week used to identify which recovery points will be retained and for how long. This parameter works with the -WeeklyRetention, -MonthlyRetentionInWeeklyFormat, and -YearlyRetentionInWeeklyFormat options. + NOTE: You need to ensure that the days of the week that are picked for backup and for retention are aligned! For example, if backup is set for Saturdays then the weekly/monthly/yearly retention policies also must use Saturday as the -DaysOfWeek option. + + String[] + + + Retention + + The retention period for which the backup point will be stored. This unit depends on the switch option specified in the commandlet. For example, if you are using the -DailyRetention flag then this value specifies the retention in days. Or if you are using the -MonthlyRetentionInDailyFormat flag then this value specifies the retention in months. + + Int32 + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + New-AzureRMBackupRetentionPolicyObject + + MonthlyRetentionInDailyFormat + + Switch parameter that creates an object with Monthly retention information. + + SwitchParameter + + + DaysOfMonth + + The days of the month used to identify which recovery points will be retained and for how long. This parameter works with the -DailyRetention, -MonthlyRetentionInDailyFormat, and -YearlyRetentionInDailyFormat options. + + + List`1[String] + + + Retention + + The retention period for which the backup point will be stored. This unit depends on the switch option specified in the commandlet. For example, if you are using the -DailyRetention flag then this value specifies the retention in days. Or if you are using the -MonthlyRetentionInDailyFormat flag then this value specifies the retention in months. + + Int32 + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + New-AzureRMBackupRetentionPolicyObject + + MonthlyRetentionInWeeklyFormat + + Switch parameter that creates an object with Monthly retention information. + + SwitchParameter + + + DaysOfWeek + + The days of the week used to identify which recovery points will be retained and for how long. This parameter works with the -WeeklyRetention, -MonthlyRetentionInWeeklyFormat, and -YearlyRetentionInWeeklyFormat options. + NOTE: You need to ensure that the days of the week that are picked for backup and for retention are aligned! For example, if backup is set for Saturdays then the weekly/monthly/yearly retention policies also must use Saturday as the -DaysOfWeek option. + + String[] + + + WeekNumber + + When defining monthly retention, this parameter specifies which week of the month has the recovery points that should get monthly retention. + + String[] + + + Retention + + The retention period for which the backup point will be stored. This unit depends on the switch option specified in the commandlet. For example, if you are using the -DailyRetention flag then this value specifies the retention in days. Or if you are using the -MonthlyRetentionInDailyFormat flag then this value specifies the retention in months. + + Int32 + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + New-AzureRMBackupRetentionPolicyObject + + YearlyRetentionInDailyFormat + + Switch parameter that creates an object with Yearly retention information. + + SwitchParameter + + + DaysOfMonth + + The days of the month used to identify which recovery points will be retained and for how long. This parameter works with the -DailyRetention, -MonthlyRetentionInDailyFormat, and -YearlyRetentionInDailyFormat options. + + + List`1[String] + + + MonthsOfYear + + When defining yearly retention, this parameter specifies which months of the year has the recovery points that should get yearly retention. + + String[] + + + Retention + + The retention period for which the backup point will be stored. This unit depends on the switch option specified in the commandlet. For example, if you are using the -DailyRetention flag then this value specifies the retention in days. Or if you are using the -MonthlyRetentionInDailyFormat flag then this value specifies the retention in months. + + Int32 + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + New-AzureRMBackupRetentionPolicyObject + + YearlyRetentionInWeeklyFormat + + Switch parameter that creates an object with Yearly retention information. + + SwitchParameter + + + DaysOfWeek + + The days of the week used to identify which recovery points will be retained and for how long. This parameter works with the -WeeklyRetention, -MonthlyRetentionInWeeklyFormat, and -YearlyRetentionInWeeklyFormat options. + NOTE: You need to ensure that the days of the week that are picked for backup and for retention are aligned! For example, if backup is set for Saturdays then the weekly/monthly/yearly retention policies also must use Saturday as the -DaysOfWeek option. + + String[] + + + WeekNumber + + When defining monthly retention, this parameter specifies which week of the month has the recovery points that should get monthly retention. + + String[] + + + MonthsOfYear + + When defining yearly retention, this parameter specifies which months of the year has the recovery points that should get yearly retention. + + String[] + + + Retention + + The retention period for which the backup point will be stored. This unit depends on the switch option specified in the commandlet. For example, if you are using the -DailyRetention flag then this value specifies the retention in days. Or if you are using the -MonthlyRetentionInDailyFormat flag then this value specifies the retention in months. + + Int32 + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + DailyRetention + + Switch parameter that creates an object with Daily retention information. + + SwitchParameter + + SwitchParameter + + + + + + Retention + + The retention period for which the backup point will be stored. This unit depends on the switch option specified in the commandlet. For example, if you are using the -DailyRetention flag then this value specifies the retention in days. Or if you are using the -MonthlyRetentionInDailyFormat flag then this value specifies the retention in months. + + Int32 + + Int32 + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + WeeklyRetention + + Switch parameter that creates an object with Weekly retention information. + + SwitchParameter + + SwitchParameter + + + + + + DaysOfWeek + + The days of the week used to identify which recovery points will be retained and for how long. This parameter works with the -WeeklyRetention, -MonthlyRetentionInWeeklyFormat, and -YearlyRetentionInWeeklyFormat options. + NOTE: You need to ensure that the days of the week that are picked for backup and for retention are aligned! For example, if backup is set for Saturdays then the weekly/monthly/yearly retention policies also must use Saturday as the -DaysOfWeek option. + + String[] + + String[] + + + + + + MonthlyRetentionInDailyFormat + + Switch parameter that creates an object with Monthly retention information. + + SwitchParameter + + SwitchParameter + + + + + + DaysOfMonth + + The days of the month used to identify which recovery points will be retained and for how long. This parameter works with the -DailyRetention, -MonthlyRetentionInDailyFormat, and -YearlyRetentionInDailyFormat options. + + + List`1[String] + + List`1[String] + + + + + + MonthlyRetentionInWeeklyFormat + + Switch parameter that creates an object with Monthly retention information. + + SwitchParameter + + SwitchParameter + + + + + + WeekNumber + + When defining monthly retention, this parameter specifies which week of the month has the recovery points that should get monthly retention. + + String[] + + String[] + + + + + + YearlyRetentionInDailyFormat + + Switch parameter that creates an object with Yearly retention information. + + SwitchParameter + + SwitchParameter + + + + + + MonthsOfYear + + When defining yearly retention, this parameter specifies which months of the year has the recovery points that should get yearly retention. + + String[] + + String[] + + + + + + YearlyRetentionInWeeklyFormat + + Switch parameter that creates an object with Yearly retention information. + + SwitchParameter + + SwitchParameter + + + + + + + + + None + + + + + + + + + + + + + AzureRMBackupRetentionPolicy + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- Create a retention policy for 30 days of daily retention -------------------------- + + PS C:\> + + $Daily = New-AzureRMBackupRetentionPolicyObject -DailyRetention -Retention 30 +PS C:\> $Daily + + + + + RetentionType Retention RetentionTimes +------------- --------- -------------- +Daily 30 + + + + + + + + + + + -------------------------- Create a monthly retention policy -------------------------- + + PS C:\> + + $Monthly = New-AzureRMBackupRetentionPolicyObject -MonthlyRetentionInDailyFormat -DaysOfMonth (10, 20) -Retention 12 +PS C:\> $Monthly | select * + + This policy keeps the backup on the 10th and the 20th of each month for 12 months + + + RetentionFormat : Daily +DaysOfMonth : {10, 20} +WeekNumber : +DaysOfWeek : +RetentionType : Monthly +Retention : 12 +RetentionTimes : + + + + + + + + + + + + + New-AzureRMBackupProtectionPolicy + + + + + + + + New-AzureRMBackupVault + + Creates a new Azure Backup vault based on the parameters that are specified. A vault is the start point for all backup operations with Azure Backup. + + + + + New + AzureRMBackupVault + + + + The New-AzureRMBackupVault commandlet creates and Azure Backup vault and returns an object of type AzurePSBackupVault that acts as a reference to the vault entity. The vault has some important properties that define the scope of backup – the region and the storage type. + + + + New-AzureRMBackupVault + + ResourceGroupName + + Specifies the name of an existing resource group. In order to create a resource group, use the New-AzureResourceGroup commandlet. There is no requirement that the Azure ResourceGroup and the Azure Backup vault be in the same region. + + String + + + Name + + Specifies the name of the Azure Backup vault. The combination of ResourceGroupName and Name must be unique. You cannot create two vaults with the same name under the same ResourceGroup, but two vaults with the same name can be placed under two different Resource Groups. + + String + + + Region + + The region parameter places the vault object into a specific Azure region. For hybrid backup scenarios, it is advised to create a vault in a region close to the on-premise server to reduce latency. For backup of Azure IaaS virtual machines, the vault becomes the point of discovery for local virtual machines. + + String + + + Storage + + Backup storage is billed at Azure Storage rates and users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. Since this is an optional parameter, if it is not specified then the vault is created with the GeoRedundant Storage option. + + AzureBackupVaultStorageType + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + ResourceGroupName + + Specifies the name of an existing resource group. In order to create a resource group, use the New-AzureResourceGroup commandlet. There is no requirement that the Azure ResourceGroup and the Azure Backup vault be in the same region. + + String + + String + + + + + + Name + + Specifies the name of the Azure Backup vault. The combination of ResourceGroupName and Name must be unique. You cannot create two vaults with the same name under the same ResourceGroup, but two vaults with the same name can be placed under two different Resource Groups. + + String + + String + + + + + + Region + + The region parameter places the vault object into a specific Azure region. For hybrid backup scenarios, it is advised to create a vault in a region close to the on-premise server to reduce latency. For backup of Azure IaaS virtual machines, the vault becomes the point of discovery for local virtual machines. + + String + + String + + + + + + Storage + + Backup storage is billed at Azure Storage rates and users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. Since this is an optional parameter, if it is not specified then the vault is created with the GeoRedundant Storage option. + + AzureBackupVaultStorageType + + AzureBackupVaultStorageType + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + None + + + + + + + + + + + + AzureRMBackupVault + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + None + + + + + -------------------------- Create a new backup vault -------------------------- + + PS C:\> + + New-AzureRMBackupVault –ResourceGroupName “rg1” –Name “vault1” –Region “westus” + + + + + ResourceId : /subscriptions/4bfbe168-f42a-4a06-8f5a-331cad1f497e/resourceGroups/rg1/providers/Microsoft.Backup + /BackupVault/vault1 +Name : vault1 +ResourceGroupName : rg1 +Region : westus +Storage : GeoRedundant + + + + + + + + + + + -------------------------- Create a new backup vault with Locally Redundant Storage -------------------------- + + PS C:\> + + New-AzureRMBackupVault –ResourceGroupName “rg2” –Name “vault2” –Region “westus” –Storage LocallyRedundant + + + + + ResourceId : /subscriptions/4bfbe168-f42a-4a06-8f5a-331cad1f497e/resourceGroups/rg2/providers/Microsoft.Backup + /BackupVault/vault2 +Name : vault2 +ResourceGroupName : rg2 +Region : westus +Storage : LocallyRedundant + + + + + + + + + + + + + New-AzureResourceGroup + https://msdn.microsoft.com/en-us/library/dn654594.aspx + + + Get-AzureRMBackupVault + + + + Set-AzureRMBackupVault + + + + Remove-AzureRMBackupVault + + + + + + + + Register-AzureRMBackupContainer + + Register the container with the Azure Backup vault + + + + + Register + AzureRMBackupContainer + + + + The first step towards configuring backup with Azure Backup is to register your machine or VM with an Azure Backup vault. This commandlet takes the input information of an Azure IaaS virtual machine and registers it with the specified vault. The register operation associates the Azure virtual machine with the backup vault and tracks the VM through the backup lifecycle. + + + + Register-AzureRMBackupContainer + + Name + + Name of the Azure VM to be registered. + + String + + + ServiceName + + The cloud service name of the Azure VM to be registered. Typically the cloud service name has a suffix ".cloudapp.net". Do not include the suffix as input to this commandlet! You can use the Get-AzureVM commandlet (in the AzureServiceManagement mode) to get the VM information; the service name is the DeploymentName property in the VM object. + + String + + + Vault + + The Azure Backup vault to which the Azure VM should be registered. + + AzureRMBackupVault + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + Register-AzureRMBackupContainer + + Name + + Name of the Azure VM to be registered. + + String + + + ResourceGroupName + + If your VM is created in the AzureResourceManager mode, then instead of -ServiceName you will need to use this parameter + + String + + + Vault + + The Azure Backup vault to which the Azure VM should be registered. + + AzureRMBackupVault + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Name + + Name of the Azure VM to be registered. + + String + + String + + + + + + ServiceName + + The cloud service name of the Azure VM to be registered. Typically the cloud service name has a suffix ".cloudapp.net". Do not include the suffix as input to this commandlet! You can use the Get-AzureVM commandlet (in the AzureServiceManagement mode) to get the VM information; the service name is the DeploymentName property in the VM object. + + String + + String + + + + + + Vault + + The Azure Backup vault to which the Azure VM should be registered. + + AzureRMBackupVault + + AzureRMBackupVault + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + ResourceGroupName + + If your VM is created in the AzureResourceManager mode, then instead of -ServiceName you will need to use this parameter + + String + + String + + + + + + + + + AzureRMBackupVault + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + AzureRMBackupJob + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + + None + + + + + -------------------------- Register a virtual machine to an Azure Backup vault -------------------------- + + PS C:\> + + $job = Register-AzureRMBackupContainer -Vault $v -Name "testvm" -ServiceName "testvm" + + + + + None + + + + + + + + + + + + + Get-AzureVM + + + + + + + + Remove-AzureRMBackupProtectionPolicy + + Deletes a backup policy from the vault + + + + + Remove + AzureRMBackupProtectionPolicy + + + + Deletes the specified policy from the backup vault. + + + + Remove-AzureRMBackupProtectionPolicy + + ProtectionPolicy + + The protection policy object that has information about the policy. Use the Get-AzureRMBackupProtectionPolicy commandlet to get a list of protection policy objects. + + AzureRMBackupProtectionPolicy + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + ProtectionPolicy + + The protection policy object that has information about the policy. Use the Get-AzureRMBackupProtectionPolicy commandlet to get a list of protection policy objects. + + AzureRMBackupProtectionPolicy + + AzureRMBackupProtectionPolicy + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + AzureRMBackupProtectionPolicy + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + + None + + + + + + + + + + + + + + + The policy must not have any associated Items that are protected. If you need to delete the policy, ensure that each associated item is protected with some other policy first. To associate another policy with a backup item, use the Enable-AzureRMBackupProtection commandlet. + + + + + -------------------------- Remove a specified policy -------------------------- + + PS C:\> + + Get-AzureRMBackupProtectionPolicy -Vault $v -Name DailyBackup | Remove-AzureRMBackupProtectionPolicy + + In this example, we fetch a policy named "DailyBackup" and pipe the policy object to the Remove commandlet. + + + None + + + + + + + + + + + + + Get-AzureRMBackupProtectionPolicy + + + + New-AzureRMBackupProtectionPolicy + + + + + + + + Remove-AzureRMBackupVault + + Deletes the Azure Backup vault object based on the parameters that are specified. + + + + + Remove + AzureRMBackupVault + + + + The Remove-AzureBackupVault commandlet deletes the backup vault. However, before a vault can be removed, it must first be empty – it must contain no backup data or protected items or registered servers. This ensures that a vault cannot be deleted inadvertently; the deletion of a backup vault is a planned operation. + Use the Remove-AzureBackupContainer commandlet to clear up IaaS VM backup data from the vault, or use the Delete-RegisteredServer commandlet to clear up other registered servers and backup data. + + + + Remove-AzureRMBackupVault + + Vault + + The specific Azure Backup vault object which needs to be removed. Use the Get-AzureRMBackupVault to get a list of vaults. + + AzureRMBackupVault + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Vault + + The specific Azure Backup vault object which needs to be removed. Use the Get-AzureRMBackupVault to get a list of vaults. + + AzureRMBackupVault + + AzureRMBackupVault + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + AzureRMBackupVault + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + None + + + + + + + + + + + + + + None + + + + + -------------------------- Delete an Azure Backup vault -------------------------- + + PS C:\> + + Get-AzureBackupVault -Name "myvault" | Remove-AzureBackupVault + + + + + + + + + + + + + + + + + + RemoveAzureRMBackupContainer + + + + New-AzureRMBackupVault + + + + Get-AzureRMBackupVault + + + + Set-AzureRMBackupVault + + + + + + + + Restore-AzureRMBackupItem + + Restores the data and config for a point in time + + + + + Restore + AzureRMBackupItem + + + + In order to restore backup data, you need to identify the backed-up item and the recovery point that holds the point-in-time data that needs to be restored. This information is supplied to the Restore-AzureRMBackupItem commandlet to initiate a restore of data from the vault to the customer's account. + + + + Restore-AzureRMBackupItem + + StorageAccountName + + The target storage account name in the customer subscription. As a part of the restore process, the disks and the config information will be placed in this storage account. + + String + + + RecoveryPoint + + The recovery point object that has information about which specific point-in-time needs to be restored. + + AzureRMBackupRecoveryPoint + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + StorageAccountName + + The target storage account name in the customer subscription. As a part of the restore process, the disks and the config information will be placed in this storage account. + + String + + String + + + + + + RecoveryPoint + + The recovery point object that has information about which specific point-in-time needs to be restored. + + AzureRMBackupRecoveryPoint + + AzureRMBackupRecoveryPoint + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + AzureRMBackupRecoveryPoint + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + + AzureRMBackupJob + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + + Triggering a restore operation in PowerShell does not restore the full VM. It restores only the disk data and config information. The user has to additionally create the VM and start it after the restore operation has completed. + + + + + -------------------------- Restore a recovery point -------------------------- + + PS C:\> + + $rp = Get-AzureRMBackupContainer -Type AzureVM -Status Registered -Vault $v | Get-AzureRMBackupItem | Get-AzureRMBackupRecoveryPoint +PS C:\> Restore-AzureRMBackupItem -StorageAccountName "destaccount" -RecoveryPoint $rp + + + + + WorkloadName Operation Status StartTime EndTime +------------ --------- ------ --------- ------- +test-vm Restore InProgress 26-Aug-15 1:14:01 PM 01-Jan-01 12:00:00 AM + + + + + + + + + + + + + + + + + Set-AzureRMBackupProtectionPolicy + + Update an existing protection policy + + + + + Set + AzureRMBackupProtectionPolicy + + + + The protection policy has multiple components: +- Name +- Backup schedule +- Retention policies + This commandlet allows you to update one or more of the components of the policy. The change might affect the backup and retention of the items associated with the policy. + + + + Set-AzureRMBackupProtectionPolicy + + NewName + + An optional parameter that specifies the new name for the policy. As with any policy, this value should be unique within a vault + + String + + + BackupTime + + An optional parameter that specifies the new backup time for the policy. + + DateTime + + + RetentionPolicy + + An optional parameter that specifies one or more new retention policies to be associated with the protection policy. + + AzureRMBackupRetentionPolicy[] + + + ProtectionPolicy + + The protection policy object that refers to the original policy that this commandlet will update. + + AzureRMBackupProtectionPolicy + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + Set-AzureRMBackupProtectionPolicy + + NewName + + An optional parameter that specifies the new name for the policy. As with any policy, this value should be unique within a vault + + String + + + Daily + + An optional parameter that sets the backup operation to run at a Daily schedule. Refer to New-AzureRMBackupProtectionPolicy for examples. + + SwitchParameter + + + BackupTime + + An optional parameter that specifies the new backup time for the policy. + + DateTime + + + RetentionPolicy + + An optional parameter that specifies one or more new retention policies to be associated with the protection policy. + + AzureRMBackupRetentionPolicy[] + + + ProtectionPolicy + + The protection policy object that refers to the original policy that this commandlet will update. + + AzureRMBackupProtectionPolicy + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + Set-AzureRMBackupProtectionPolicy + + NewName + + An optional parameter that specifies the new name for the policy. As with any policy, this value should be unique within a vault + + String + + + Weekly + + An optional parameter that sets the backup operation to run at a Weekly schedule. Refer to New-AzureRMBackupProtectionPolicy for examples. + + SwitchParameter + + + BackupTime + + An optional parameter that specifies the new backup time for the policy. + + DateTime + + + RetentionPolicy + + An optional parameter that specifies one or more new retention policies to be associated with the protection policy. + + AzureRMBackupRetentionPolicy[] + + + DaysOfWeek + + An optional parameter that sets the backup operation to run on specific days of the week. Used in conjunction with the -Weekly parameter. Refer to New-AzureRMBackupProtectionPolicy for examples. + + String[] + + + ProtectionPolicy + + The protection policy object that refers to the original policy that this commandlet will update. + + AzureRMBackupProtectionPolicy + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + NewName + + An optional parameter that specifies the new name for the policy. As with any policy, this value should be unique within a vault + + String + + String + + + + + + BackupTime + + An optional parameter that specifies the new backup time for the policy. + + DateTime + + DateTime + + + + + + RetentionPolicy + + An optional parameter that specifies one or more new retention policies to be associated with the protection policy. + + AzureRMBackupRetentionPolicy[] + + AzureRMBackupRetentionPolicy[] + + + + + + ProtectionPolicy + + The protection policy object that refers to the original policy that this commandlet will update. + + AzureRMBackupProtectionPolicy + + AzureRMBackupProtectionPolicy + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + Daily + + An optional parameter that sets the backup operation to run at a Daily schedule. Refer to New-AzureRMBackupProtectionPolicy for examples. + + SwitchParameter + + SwitchParameter + + + + + + Weekly + + An optional parameter that sets the backup operation to run at a Weekly schedule. Refer to New-AzureRMBackupProtectionPolicy for examples. + + SwitchParameter + + SwitchParameter + + + + + + DaysOfWeek + + An optional parameter that sets the backup operation to run on specific days of the week. Used in conjunction with the -Weekly parameter. Refer to New-AzureRMBackupProtectionPolicy for examples. + + String[] + + String[] + + + + + + + + + AzureRMBackupProtectionPolicy + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + None + + + + + + + + + + + + + + + None + + + + + + + New-AzureRMBackupProtectionPolicy @@ -898,30 +4237,36 @@ Storage : LocallyRedundant - Remove-AzureBackupVault + Set-AzureRMBackupVault - Deletes the Azure Backup vault object based on the parameters that are specified. + Changes the properties of the Azure Backup vault object based on the parameters that are specified. - Remove - AzureBackupVault + Set + AzureRMBackupVault - The Remove-AzureBackupVault commandlet deletes the backup vault. However, before a vault can be removed, it must first be empty – it must contain no backup data or protected items or registered servers. This ensures that a vault cannot be deleted inadvertently; the deletion of a backup vault is a planned operation. - Use the Remove-AzureBackupContainer commandlet to clear up IaaS VM backup data from the vault, or use the Delete-RegisteredServer commandlet to clear up other registered servers and backup data. + The Set-AzureBackupVault commandlet allows you to change the storage type of the backup vault. The other parameters like Region, Name, and ResourceGroupName are not editable. - Remove-AzureBackupVault + Set-AzureRMBackupVault + + Storage + + Users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. + + AzureBackupVaultStorageType + Vault - The specific Azure Backup vault object which needs to be removed. + The specific Azure Backup vault object for which the properties need to be updated. Use the Get-AzureRMBackupVault to get a list of vaults. - AzurePSBackupVault + AzureRMBackupVault Profile @@ -933,14 +4278,26 @@ Storage : LocallyRedundant + + Storage + + Users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. + + AzureBackupVaultStorageType + + AzureBackupVaultStorageType + + + + Vault - The specific Azure Backup vault object which needs to be removed. + The specific Azure Backup vault object for which the properties need to be updated. Use the Get-AzureRMBackupVault to get a list of vaults. - AzurePSBackupVault + AzureRMBackupVault - AzurePSBackupVault + AzureRMBackupVault @@ -961,13 +4318,12 @@ Storage : LocallyRedundant - Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + AzureRMBackupVault - -This section details out the type of the objects that you can pipe to the cmdlet. + This section details out the type of the objects that you can pipe to the cmdlet. @@ -979,8 +4335,7 @@ This section details out the type of the objects that you can pipe to the cmdlet - -This section details out the type of the objects that the cmdlet emits. + @@ -989,16 +4344,16 @@ This section details out the type of the objects that the cmdlet emits. - None + The storage type is locked on the registration of the first server or virtual machine, and cannot be changed afterwards. - -------------------------- Delete an Azure Backup vault -------------------------- + -------------------------- Change the storage for an existing vault -------------------------- PS C:\> - Get-AzureBackupVault -Name "myvault" | Remove-AzureBackupVault + Get-AzureBackupVault –Name “myvault” | Set-AzureBackupVault –Storage LocallyRedundant @@ -1016,23 +4371,15 @@ This section details out the type of the objects that the cmdlet emits. - Remove-AzureBackupContainer - - - - Delete-RegisteredServer - - - - New-AzureBackupVault + New-AzureRMBackupVault - Get-AzureBackupVault + Get-AzureRMBackupVault - Set-AzureBackupVault + Remove-AzureRMBackupVault @@ -1040,36 +4387,57 @@ This section details out the type of the objects that the cmdlet emits. - Set-AzureBackupVault + Stop-AzureRMBackupJob - Changes the properties of the Azure Backup vault object based on the parameters that are specified. + Cancels an ongoing Azure Backup job - Set - AzureBackupVault + Stop + AzureRMBackupJob - The Set-AzureBackupVault commandlet allows you to change the storage type of the backup vault. The other parameters like Region, Name, and ResourceGroupName are not editable. + This commandlet cancels an existing Azure Backup job. This is particularly helpful if the job is taking too long and is blocking other activities. + The types of jobs that can be stopped are: +- Backup +- Restore + All other job types are not cancellable. - Set-AzureBackupVault - - Storage + Stop-AzureRMBackupJob + + Vault - Users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. + Use the Get-AzureRMBackupVault to get a list of vaults. - AzureBackupVaultStorageType + AzureRMBackupVault - - Vault + + JobID + + The GUID that uniquely identifies a job in the Azure Backup service. Use the Get-AzureRMBackupJob commandlet to get one or more jobs. From the AzureRMBackupJob object, use the InstanceId field for this value. + + String + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + Stop-AzureRMBackupJob + + Job - The specific Azure Backup vault object for which the properties need to be updated. + The job object that contains information about the job. The commandlet will attempt to stop (or cancel) this job. - AzurePSBackupVault + AzureRMBackupJob Profile @@ -1081,26 +4449,26 @@ This section details out the type of the objects that the cmdlet emits. - - Storage + + Vault - Users can choose between LocallyRedundant and GeoRedundant as the storage for the backup data. + Use the Get-AzureRMBackupVault to get a list of vaults. - AzureBackupVaultStorageType + AzureRMBackupVault - AzureBackupVaultStorageType + AzureRMBackupVault - - Vault + + JobID - The specific Azure Backup vault object for which the properties need to be updated. + The GUID that uniquely identifies a job in the Azure Backup service. Use the Get-AzureRMBackupJob commandlet to get one or more jobs. From the AzureRMBackupJob object, use the InstanceId field for this value. - AzurePSBackupVault + String - AzurePSBackupVault + String @@ -1117,11 +4485,23 @@ This section details out the type of the objects that the cmdlet emits. + + Job + + The job object that contains information about the job. The commandlet will attempt to stop (or cancel) this job. + + AzureRMBackupJob + + AzureRMBackupJob + + + + - Microsoft.Azure.Commands.AzureBackup.Models.AzurePSBackupVault + AzureRMBackupJob @@ -1138,7 +4518,7 @@ This section details out the type of the objects that the cmdlet emits. - This section details out the type of the objects that the cmdlet emits. + @@ -1147,16 +4527,17 @@ This section details out the type of the objects that the cmdlet emits. - The storage type is locked on the registration of the first server or virtual machine, and cannot be changed afterwards. + None - -------------------------- Change the storage for an existing vault -------------------------- + -------------------------- Stop a backup job with a job ID -------------------------- PS C:\> - Get-AzureBackupVault –Name “myvault” | Set-AzureBackupVault –Storage LocallyRedundant + $j = Get-AzureRMBackupJob -Vault $v -Operation Backup +PS C:\> Stop-AzureRMBackupJob -Vault $v -JobID $j.InstanceId @@ -1171,30 +4552,34 @@ This section details out the type of the objects that the cmdlet emits. + + -------------------------- Stop all running Restore operations -------------------------- + + PS C:\> + + Get-AzureRMBackupJob -Vault $v -Operation Restore | Stop-AzureRMBackupJob + + In this example, the AzureRMBackupJob objects returned by the Get-AzureRMBackupJob commandlet are piped to the Stop-AzureRMBackupJob commandlet. + + + + + + + + + + + + - - New-AzureBackupVault - - - - Get-AzureBackupVault - - - - Remove-AzureBackupVault - - - - Set-AzureBackupVaultStorageType - - - Unregister-AzureBackupContainer + Unregister-AzureRMBackupContainer Unregisters the specified Windows Server or Azure virtual machine from the Azure Backup vault. @@ -1202,7 +4587,7 @@ This section details out the type of the objects that the cmdlet emits. Unregister - AzureBackupContainer + AzureRMBackupContainer @@ -1210,7 +4595,7 @@ This section details out the type of the objects that the cmdlet emits. - Unregister-AzureBackupContainer + Unregister-AzureRMBackupContainer Force @@ -1223,7 +4608,7 @@ This section details out the type of the objects that the cmdlet emits. The Windows Server or Azure virtual machine that should be unregistered. - AzureBackupContainer + AzureRMBackupContainer Profile @@ -1252,9 +4637,9 @@ This section details out the type of the objects that the cmdlet emits. The Windows Server or Azure virtual machine that should be unregistered. - AzureBackupContainer + AzureRMBackupContainer - AzureBackupContainer + AzureRMBackupContainer @@ -1288,7 +4673,7 @@ This section details out the type of the objects that the cmdlet emits. AzureBackupJob -- For containers of type Windows, the return value is $null +- For containers of type Windows Server, the return value is $null @@ -1352,7 +4737,131 @@ This operation will delete all data in the backup vault that is associated with - Get-AzureBackupContainer + Get-AzureRMBackupContainer + + + + + + + + Wait-AzureRMBackupJob + + Waits for an Azure Backup job to complete + + + + + Wait + AzureRMBackupJob + + + + Long running operations are tracked in the Azure Backup service using jobs. To script out a workflow sequence that involves such a long running operations, the script has to wait for the operation to finish before starting the next one. This commandlet allows the script to pause until the job completes. + Scripting with this commandlet makes the script code simpler with no need to "poll" for the job status. + + + + Wait-AzureRMBackupJob + + Job + + The job object that contains information about the job. The commandlet will wait for this job to complete. + + Object + + + TimeOut + + The maximum time (in seconds) that the commandlet should wait for the job to complete. It is advised that a timeout value should always be specified to prevent infinite waiting. In order to wait 24 hours, set the timeout value to 86400. + + Nullable`1[Int64] + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + + + + + Job + + The job object that contains information about the job. The commandlet will wait for this job to complete. + + Object + + Object + + + + + + TimeOut + + The maximum time (in seconds) that the commandlet should wait for the job to complete. It is advised that a timeout value should always be specified to prevent infinite waiting. In order to wait 24 hours, set the timeout value to 86400. + + Nullable`1[Int64] + + Nullable`1[Int64] + + + + + + Profile + + Non-mandatory AzureProfile input object + + AzureProfile + + AzureProfile + + + + + + + + + AzureRMBackupJob + + + + + This section details out the type of the objects that you can pipe to the cmdlet. + + + + + + + AzureRMBackupJob object (or) +Array of AzureRMBackupJob objects + + + + + This section details out the type of the objects that the cmdlet emits. + + + + + + + + + + + + + + + + Get-AzureRMBackupJob diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/JobObjects.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/JobObjects.cs index 89cdff0b87ba..a4b05997e325 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/JobObjects.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/JobObjects.cs @@ -21,6 +21,7 @@ using Microsoft.Azure.Management.BackupServices; using Microsoft.Azure.Management.BackupServices; using Mgmt = Microsoft.Azure.Management.BackupServices.Models; +using Microsoft.Azure.Commands.AzureBackup.Cmdlets; namespace Microsoft.Azure.Commands.AzureBackup.Models { @@ -52,7 +53,7 @@ public AzureRMBackupJob(AzureRMBackupVault vault, Mgmt.CSMJobProperties serviceJ : base(vault) { this.InstanceId = jobName; - this.WorkloadType = serviceJob.WorkloadType; + this.WorkloadType = AzureBackupJobHelper.GetTypeForPS(serviceJob.WorkloadType); this.WorkloadName = serviceJob.EntityFriendlyName; this.Operation = serviceJob.Operation; this.Status = serviceJob.Status; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/GetBatchAccountCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/GetBatchAccountCommandTests.cs index 90906bed6566..9770129efce5 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/GetBatchAccountCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/GetBatchAccountCommandTests.cs @@ -19,10 +19,11 @@ using System.Management.Automation; using Xunit; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; namespace Microsoft.Azure.Commands.Batch.Test.Accounts { - public class GetBatchAccountCommandTests + public class GetBatchAccountCommandTests : RMTestBase { private GetBatchAccountCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/GetBatchAccountKeysCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/GetBatchAccountKeysCommandTests.cs index edd99761c4dc..bac2d7b8cfec 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/GetBatchAccountKeysCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/GetBatchAccountKeysCommandTests.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Accounts { - public class GetBatchAccountKeysCommandTests + public class GetBatchAccountKeysCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private GetBatchAccountKeysCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/NewBatchAccountCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/NewBatchAccountCommandTests.cs index 508a2775dca6..7910df6359a7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/NewBatchAccountCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/NewBatchAccountCommandTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Accounts { - public class NewBatchAccountCommandTests + public class NewBatchAccountCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private NewBatchAccountCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/RegenBatchAccountKeyCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/RegenBatchAccountKeyCommandTests.cs index cfb25a30fdd3..d77a5e02d45f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/RegenBatchAccountKeyCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/RegenBatchAccountKeyCommandTests.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Accounts { - public class RegenBatchAccountKeyCommandTests + public class RegenBatchAccountKeyCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private RegenBatchAccountKeyCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/RemoveBatchAccountCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/RemoveBatchAccountCommandTests.cs index 930fc4243785..08ed5f4ec8d1 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/RemoveBatchAccountCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/RemoveBatchAccountCommandTests.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Accounts { - public class RemoveBatchAccountCommandTests + public class RemoveBatchAccountCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private RemoveBatchAccountCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/SetBatchAccountCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/SetBatchAccountCommandTests.cs index 3b3cb50749b1..edb7fee8700a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/SetBatchAccountCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Accounts/SetBatchAccountCommandTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Accounts { - public class SetBatchAccountCommandTests + public class SetBatchAccountCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private SetBatchAccountCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs index 6a6eb70b1b9d..3b4bd9baf09e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/BatchTestHelpers.cs @@ -31,7 +31,6 @@ using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; using Microsoft.Azure.Test.HttpRecorder; -using Microsoft.WindowsAzure.Commands.ServiceManagement.Model; using Microsoft.WindowsAzure.Storage.Shared.Protocol; using Xunit; using ProxyModels = Microsoft.Azure.Batch.Protocol.Models; 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 bdadf949bee4..34a3ac443f9a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.csproj @@ -485,13 +485,9 @@ - - {3b48a77b-5956-4a62-9081-92ba04b02b27} - Commands.Common.Test - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common {c1bda476-a5cc-4394-914d-48b0ec31a710} diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/NewBatchComputeNodeUserCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/NewBatchComputeNodeUserCommandTests.cs index abc958d33cd1..3da21e79757f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/NewBatchComputeNodeUserCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/NewBatchComputeNodeUserCommandTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ComputeNodeUsers { - public class NewBatchComputeNodeUserCommandTests + public class NewBatchComputeNodeUserCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private NewBatchComputeNodeUserCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/RemoveBatchComputeNodeUserCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/RemoveBatchComputeNodeUserCommandTests.cs index 1dcc66234ee6..b9fec9683e6e 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/RemoveBatchComputeNodeUserCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodeUsers/RemoveBatchComputeNodeUserCommandTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ComputeNodeUsers { - public class RemoveBatchComputeNodeUserCommandTests + public class RemoveBatchComputeNodeUserCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private RemoveBatchComputeNodeUserCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/GetBatchComputeNodeCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/GetBatchComputeNodeCommandTests.cs index 447f954f423e..a11605067bb7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/GetBatchComputeNodeCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/GetBatchComputeNodeCommandTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ComputeNodes { - public class GetBatchComputeNodeCommandTests + public class GetBatchComputeNodeCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private GetBatchComputeNodeCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/ResetBatchComputeNodeCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/ResetBatchComputeNodeCommandTests.cs index 7d17d9891e8e..d0f0672cd7ff 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/ResetBatchComputeNodeCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/ResetBatchComputeNodeCommandTests.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class ResetBatchComputeNodeCommandTests + public class ResetBatchComputeNodeCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private ResetBatchComputeNodeCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/RestartBatchComputeNodeCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/RestartBatchComputeNodeCommandTests.cs index 76a184a3588c..b68bba34d46f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/RestartBatchComputeNodeCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ComputeNodes/RestartBatchComputeNodeCommandTests.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class RestartBatchComputeNodeCommandTests + public class RestartBatchComputeNodeCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private RestartBatchComputeNodeCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileCommandTests.cs index ac8925106065..e6665dd71746 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileCommandTests.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Files { - public class GetBatchNodeFileCommandTests + public class GetBatchNodeFileCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private GetBatchNodeFileCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileContentCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileContentCommandTests.cs index 50f025b90b31..f7424aa559da 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileContentCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchNodeFileContentCommandTests.cs @@ -30,7 +30,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Files { - public class GetBatchNodeFileContentCommandTests + public class GetBatchNodeFileContentCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private GetBatchNodeFileContentCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchRemoteDesktopProtocolFileCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchRemoteDesktopProtocolFileCommandTests.cs index 465dab352e56..288c7de677ba 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchRemoteDesktopProtocolFileCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Files/GetBatchRemoteDesktopProtocolFileCommandTests.cs @@ -30,7 +30,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Files { - public class GetBatchRemoteDesktopProtocolFileCommandTests + public class GetBatchRemoteDesktopProtocolFileCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private GetBatchRemoteDesktopProtocolFileCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/DisableBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/DisableBatchJobScheduleCommandTests.cs index 88fac985d10a..5d33cf3a294c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/DisableBatchJobScheduleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/DisableBatchJobScheduleCommandTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class DisableBatchJobScheduleCommandTests + public class DisableBatchJobScheduleCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private DisableBatchJobScheduleCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/EnableBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/EnableBatchJobScheduleCommandTests.cs index f55c3ca3f056..09866fe84dfc 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/EnableBatchJobScheduleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/EnableBatchJobScheduleCommandTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class EnableBatchJobScheduleCommandTests + public class EnableBatchJobScheduleCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private EnableBatchJobScheduleCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/GetBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/GetBatchJobScheduleCommandTests.cs index e43ce0b8b3d5..7d972944907b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/GetBatchJobScheduleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/GetBatchJobScheduleCommandTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.JobSchedules { - public class GetBatchJobScheduleCommandTests + public class GetBatchJobScheduleCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private GetBatchJobScheduleCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/NewBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/NewBatchJobScheduleCommandTests.cs index 013103c8e7d0..2614e5de256f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/NewBatchJobScheduleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/NewBatchJobScheduleCommandTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.JobSchedules { - public class NewBatchJobScheduleCommandTests + public class NewBatchJobScheduleCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private NewBatchJobScheduleCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/RemoveBatchJobScheduleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/RemoveBatchJobScheduleCommandTests.cs index c758acfbddfe..a556d13189b0 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/RemoveBatchJobScheduleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/JobSchedules/RemoveBatchJobScheduleCommandTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.JobSchedules { - public class RemoveBatchJobScheduleCommandTests + public class RemoveBatchJobScheduleCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private RemoveBatchJobScheduleCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/DisableBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/DisableBatchJobCommandTests.cs index 963b508c228e..97bbd177ed56 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/DisableBatchJobCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/DisableBatchJobCommandTests.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class DisableBatchJobCommandTests + public class DisableBatchJobCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private DisableBatchJobCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/EnableBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/EnableBatchJobCommandTests.cs index be930f5f878b..7850c4452127 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/EnableBatchJobCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/EnableBatchJobCommandTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class EnableBatchJobCommandTests + public class EnableBatchJobCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private EnableBatchJobCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/GetBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/GetBatchJobCommandTests.cs index 595ede5cda55..c4a458d744d0 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/GetBatchJobCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/GetBatchJobCommandTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Jobs { - public class GetBatchJobCommandTests + public class GetBatchJobCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private GetBatchJobCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/NewBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/NewBatchJobCommandTests.cs index c9cf123ac5f1..741cec243ee1 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/NewBatchJobCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/NewBatchJobCommandTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Jobs { - public class NewBatchJobCommandTests + public class NewBatchJobCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private NewBatchJobCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/RemoveBatchJobCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/RemoveBatchJobCommandTests.cs index b28657892c8d..0ae823e53bfd 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/RemoveBatchJobCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Jobs/RemoveBatchJobCommandTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Jobs { - public class RemoveBatchJobCommandTests + public class RemoveBatchJobCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private RemoveBatchJobCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Models/BatchAccountContextTest.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Models/BatchAccountContextTest.cs index 7efe5b1e834a..5cc724ac2666 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Models/BatchAccountContextTest.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Models/BatchAccountContextTest.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.BatchManager.Test { - public class BatchAccountContextTest + public class BatchAccountContextTest : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/DisableBatchAutoScaleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/DisableBatchAutoScaleCommandTests.cs index 54663a08cda4..4701edf59c70 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/DisableBatchAutoScaleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/DisableBatchAutoScaleCommandTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class DisableBatchAutoScaleCommandTests + public class DisableBatchAutoScaleCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private DisableBatchAutoScaleCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs index 68ee2e11da26..1563656dcd7b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/EnableBatchAutoScaleCommandTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class EnableBatchAutoScaleCommandTests + public class EnableBatchAutoScaleCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private EnableBatchAutoScaleCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/GetBatchPoolCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/GetBatchPoolCommandTests.cs index e5a1660a41af..6df660444ab9 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/GetBatchPoolCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/GetBatchPoolCommandTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class GetBatchPoolCommandTests + public class GetBatchPoolCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private GetBatchPoolCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/NewBatchPoolCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/NewBatchPoolCommandTests.cs index e8a04858810e..f897a4e921f2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/NewBatchPoolCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/NewBatchPoolCommandTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class NewBatchPoolCommandTests + public class NewBatchPoolCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private NewBatchPoolCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/RemoveBatchPoolCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/RemoveBatchPoolCommandTests.cs index e59a3b2adf93..6dcf4fcdb66f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/RemoveBatchPoolCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/RemoveBatchPoolCommandTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class RemoveBatchPoolCommandTests + public class RemoveBatchPoolCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private RemoveBatchPoolCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/SetBatchPoolOSVersionCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/SetBatchPoolOSVersionCommandTests.cs index 99ce0b58efd3..5964b0ffa245 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/SetBatchPoolOSVersionCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/SetBatchPoolOSVersionCommandTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class SetBatchPoolOSVersionCommandTests + public class SetBatchPoolOSVersionCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private SetBatchPoolOSVersionCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StartBatchPoolResizeCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StartBatchPoolResizeCommandTests.cs index e1d2f3dccda8..f09ad4523482 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StartBatchPoolResizeCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StartBatchPoolResizeCommandTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class StartBatchPoolResizeCommandTests + public class StartBatchPoolResizeCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private StartBatchPoolResizeCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StopBatchPoolResizeCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StopBatchPoolResizeCommandTests.cs index b9dd7b7daf85..5d4d7dc673f9 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StopBatchPoolResizeCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/StopBatchPoolResizeCommandTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class StopBatchPoolResizeCommandTests + public class StopBatchPoolResizeCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private StopBatchPoolResizeCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/TestBatchAutoScaleCommandTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/TestBatchAutoScaleCommandTests.cs index 9a4adc20a634..de4020441fc2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/TestBatchAutoScaleCommandTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/Pools/TestBatchAutoScaleCommandTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Pools { - public class TestBatchAutoScaleCommandTests + public class TestBatchAutoScaleCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private TestBatchAutoScaleCommand cmdlet; private Mock batchClientMock; diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.cs index 4f1c81bce9a1..a9647fb2c2e4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/BatchAccountTests.cs @@ -17,7 +17,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { - public class BatchAccountTests + public class BatchAccountTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs index 37b2ac826a94..e5e1f959ace6 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { - public class ComputeNodeTests + public class ComputeNodeTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private const string accountName = ScenarioTestHelpers.SharedAccount; private const string poolId = ScenarioTestHelpers.SharedPool; @@ -173,30 +173,30 @@ private void TestReimageComputeNode(bool usePipeline) [Cmdlet(VerbsCommon.Get, "AzureBatchComputeNode_ST", DefaultParameterSetName = Constants.ODataFilterParameterSet)] public class GetBatchComputeNodeScenarioTestCommand : GetBatchComputeNodeCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsLifecycle.Restart, "AzureBatchComputeNode_ST", DefaultParameterSetName = Constants.IdParameterSet)] public class RestartBatchComputeNodeScenarioTestCommand : RestartBatchComputeNodeCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.Reset, "AzureBatchComputeNode_ST", DefaultParameterSetName = Constants.IdParameterSet)] public class ResetBatchComputeNodeScenarioTestCommand : ResetBatchComputeNodeCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeUserTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeUserTests.cs index fbce8e9cd085..6f38bbd48e02 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeUserTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/ComputeNodeUserTests.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { - public class ComputeNodeUserTests + public class ComputeNodeUserTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private const string accountName = ScenarioTestHelpers.SharedAccount; private const string poolId = ScenarioTestHelpers.SharedPool; @@ -98,20 +98,20 @@ public void TestDeleteComputeNodeUser() [Cmdlet(VerbsCommon.New, "AzureBatchComputeNodeUser_ST")] public class NewBatchComputeNodeUserScenarioTestCommand : NewBatchComputeNodeUserCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.Remove, "AzureBatchComputeNodeUser_ST")] public class RemoveBatchComputeNodeUserScenarioTestCommand : RemoveBatchComputeNodeUserCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/FileTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/FileTests.cs index 0b25a1e22e99..f082b98bc126 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/FileTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/FileTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { - public class FileTests + public class FileTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private const string accountName = ScenarioTestHelpers.SharedAccount; private const string poolId = ScenarioTestHelpers.SharedPool; @@ -449,30 +449,30 @@ public void TestGetRemoteDesktopProtocolFilePipeline() [Cmdlet(VerbsCommon.Get, "AzureBatchNodeFile_ST", DefaultParameterSetName = ComputeNodeAndIdParameterSet)] public class GetBatchNodeFileScenarioTestCommand : GetBatchNodeFileCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.Get, "AzureBatchNodeFileContent_ST")] public class GetBatchNodeFileContentScenarioTestCommand : GetBatchNodeFileContentCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.Get, "AzureBatchRemoteDesktopProtocolFile_ST")] public class GetBatchRemoteDesktopProtocolFileScenarioTestCommand : GetBatchRemoteDesktopProtocolFileCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs index fbcc0ce43708..ba2d92803553 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobScheduleTests.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { - public class JobScheduleTests + public class JobScheduleTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private const string accountName = ScenarioTestHelpers.SharedAccount; @@ -212,50 +212,50 @@ public void TestDisableAndEnableJobSchedule() [Cmdlet(VerbsCommon.Get, "AzureBatchJobSchedule_ST", DefaultParameterSetName = Constants.ODataFilterParameterSet)] public class GetBatchJobScheduleScenarioTestCommand : GetBatchJobScheduleCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.New, "AzureBatchJobSchedule_ST")] public class NewBatchJobScheduleScenarioTestCommand : NewBatchJobScheduleCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.Remove, "AzureBatchJobSchedule_ST")] public class RemoveBatchJobScheduleScenarioTestCommand : RemoveBatchJobScheduleCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsLifecycle.Enable, "AzureBatchJobSchedule_ST")] public class EnableBatchJobScheduleScenarioTestCommand : EnableBatchJobScheduleCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsLifecycle.Disable, "AzureBatchJobSchedule_ST")] public class DisableBatchJobScheduleScenarioTestCommand : DisableBatchJobScheduleCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs index a273df84216a..afdf8b66e8a3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/JobTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { - public class JobTests + public class JobTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private const string accountName = ScenarioTestHelpers.SharedAccount; @@ -249,50 +249,50 @@ public void TestDisableAndEnableJob() [Cmdlet(VerbsCommon.New, "AzureBatchJob_ST")] public class NewBatchJobScenarioTestCommand : NewBatchJobCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.Get, "AzureBatchJob_ST", DefaultParameterSetName = Constants.ODataFilterParameterSet)] public class GetBatchJobScenarioTestCommand : GetBatchJobCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.Remove, "AzureBatchJob_ST")] public class RemoveBatchJobScenarioTestCommand : RemoveBatchJobCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsLifecycle.Enable, "AzureBatchJob_ST")] public class EnableBatchJobScenarioTestCommand : EnableBatchJobCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsLifecycle.Disable, "AzureBatchJob_ST")] public class DisableBatchJobScenarioTestCommand : DisableBatchJobCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs index 6f5d5769f890..b974f62384ba 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/PoolTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { - public class PoolTests + public class PoolTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private const string commonAccountName = ScenarioTestHelpers.SharedAccount; private const string testPoolId = ScenarioTestHelpers.SharedPool; @@ -424,90 +424,90 @@ private void TestChangeOSVersion(bool usePipeline) [Cmdlet(VerbsCommon.Get, "AzureBatchPool_ST", DefaultParameterSetName = Constants.ODataFilterParameterSet)] public class GetBatchPoolScenarioTestCommand : GetBatchPoolCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.New, "AzureBatchPool_ST", DefaultParameterSetName = TargetDedicatedParameterSet)] public class NewBatchPoolScenarioTestCommand : NewBatchPoolCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.Remove, "AzureBatchPool_ST")] public class RemoveBatchPoolScenarioTestCommand : RemoveBatchPoolCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsLifecycle.Start, "AzureBatchPoolResize_ST")] public class StartBatchPoolResizeScenarioTestCommand : StartBatchPoolResizeCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsLifecycle.Stop, "AzureBatchPoolResize_ST")] public class StopBatchPoolResizeScenarioTestCommand : StopBatchPoolResizeCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsLifecycle.Enable, "AzureBatchAutoScale_ST")] public class EnableBatchAutoScaleScenarioTestCommand : EnableBatchAutoScaleCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsLifecycle.Disable, "AzureBatchAutoScale_ST")] public class DisableBatchAutoScaleScenarioTestCommand : DisableBatchAutoScaleCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsDiagnostic.Test, "AzureBatchAutoScale_ST")] public class TestBatchAutoScaleScenarioTestCommand : TestBatchAutoScaleCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.Set, "AzureBatchPoolOSVersion_ST")] public class SetBatchPoolOSVersionScenarioTestCommand : SetBatchPoolOSVersionCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs index 17fa3ce70ac0..db9c20ff404f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch.Test/ScenarioTests/TaskTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests { - public class TaskTests + public class TaskTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase { private const string accountName = ScenarioTestHelpers.SharedAccount; @@ -241,30 +241,30 @@ public void TestDeleteTaskPipeline() [Cmdlet(VerbsCommon.Get, "AzureBatchTask_ST", DefaultParameterSetName = Constants.ODataFilterParameterSet)] public class GetBatchTaskScenarioTestCommand : GetBatchTaskCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.New, "AzureBatchTask_ST")] public class NewBatchTaskScenarioTestCommand : NewBatchTaskCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } [Cmdlet(VerbsCommon.Remove, "AzureBatchTask_ST")] public class RemoveBatchTaskScenarioTestCommand : RemoveBatchTaskCommand { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() }; - base.ExecuteCmdlet(); + base.ProcessRecord(); } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs index a270a5dd22af..5a8484a5f9a5 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountCommand.cs @@ -35,7 +35,7 @@ public class GetBatchAccountCommand : BatchCmdletBase [Parameter(Position = 2, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Filter list of accounts using the key and optional value of the specified tag.")] public Hashtable Tag { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (string.IsNullOrEmpty(this.AccountName)) { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs index 04c51763a574..73b92a06936a 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/GetBatchAccountKeysCommand.cs @@ -36,7 +36,7 @@ public class GetBatchAccountKeysCommand : BatchCmdletBase /// Get the keys associated with the specified account. If only the account name is passed in, then /// look up its resource group and construct a new BatchAccountContext to hold everything. /// - public override void ExecuteCmdlet() + protected override void ProcessRecord() { BatchAccountContext context = BatchClient.ListKeys(this.ResourceGroupName, this.AccountName); WriteObject(context); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs index 7234c5a5112f..a61b45cfffbe 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountCommand.cs @@ -41,7 +41,7 @@ public class NewBatchAccountCommand : BatchCmdletBase [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "An array of hashtables which represents account tags.")] public Hashtable[] Tag { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { BatchAccountContext context = BatchClient.CreateAccount(this.ResourceGroupName, this.AccountName, this.Location, this.Tag); WriteObject(context); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs index de86fe450f73..46ea49728193 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/NewBatchAccountKeyCommand.cs @@ -52,7 +52,7 @@ public string KeyType } } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { BatchAccountContext context = BatchClient.RegenerateKeys(this.ResourceGroupName, this.AccountName, this.keyType); WriteObject(context); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs index 2ce88ab52b9f..9c517f91327d 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/RemoveBatchAccountCommand.cs @@ -34,7 +34,7 @@ public class RemoveBatchAccountCommand : BatchCmdletBase [Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ConfirmAction( Force.IsPresent, diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs index 684ae823c3aa..08237c0716e2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Accounts/SetBatchAccountCommand.cs @@ -36,7 +36,7 @@ public class SetBatchAccountCommand : BatchCmdletBase [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group of the account being updated.")] public string ResourceGroupName { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { BatchAccountContext context = BatchClient.UpdateAccount(this.ResourceGroupName, this.AccountName, this.Tag); WriteObject(context); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/BatchCmdletBase.cs b/src/ResourceManager/AzureBatch/Commands.Batch/BatchCmdletBase.cs index a8355354f918..7794b2133158 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/BatchCmdletBase.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/BatchCmdletBase.cs @@ -22,10 +22,11 @@ using System; using System.Text; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; +using Microsoft.Azure.Commands.ResourceManager.Common; namespace Microsoft.Azure.Commands.Batch { - public class BatchCmdletBase : AzureSMCmdlet + public class BatchCmdletBase : AzureRMCmdlet { private BatchClient batchClient; @@ -35,7 +36,7 @@ public BatchClient BatchClient { if (batchClient == null) { - batchClient = new BatchClient(Profile.DefaultContext); + batchClient = new BatchClient(DefaultContext); batchClient.VerboseLogger = WriteVerboseWithTimestamp; } return batchClient; @@ -54,7 +55,7 @@ protected override void ProcessRecord() try { Validate.ValidateInternetConnection(); - ExecuteCmdlet(); + ProcessRecord(); OnProcessRecord(); } catch (AggregateException ex) @@ -178,5 +179,13 @@ private void HandleBatchException(BatchException ex) } } } + + /// + /// This is added for tests only, should move out from this pattern and rely of ProcessRecord. + /// + public void ExecuteCmdlet() + { + ProcessRecord(); + } } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj b/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj index 5547f700a3e8..fc8bb6cbef09 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.csproj @@ -303,12 +303,11 @@ - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common - @@ -329,4 +328,4 @@ --> - + \ No newline at end of file diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/NewBatchComputeNodeUserCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/NewBatchComputeNodeUserCommand.cs index e7f880a8db16..ac09ab5baa45 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/NewBatchComputeNodeUserCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/NewBatchComputeNodeUserCommand.cs @@ -51,7 +51,7 @@ public class NewBatchComputeNodeUserCommand : BatchObjectModelCmdletBase [Parameter] public SwitchParameter IsAdmin { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { NewComputeNodeUserParameters parameters = new NewComputeNodeUserParameters(this.BatchContext, this.PoolId, this.ComputeNodeId, this.ComputeNode, this.AdditionalBehaviors) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs index 8d37b7489884..477c49b3fe6f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodeUsers/RemoveBatchComputeNodeUserCommand.cs @@ -39,7 +39,7 @@ public class RemoveBatchComputeNodeUserCommand : BatchObjectModelCmdletBase [Parameter] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ComputeNodeUserOperationParameters parameters = new ComputeNodeUserOperationParameters(this.BatchContext, this.PoolId, this.ComputeNodeId, this.Name, this.AdditionalBehaviors); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/GetBatchComputeNodeCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/GetBatchComputeNodeCommand.cs index 2bc4d9660c12..050b38bcd0c1 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/GetBatchComputeNodeCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/GetBatchComputeNodeCommand.cs @@ -51,7 +51,7 @@ public int MaxCount set { this.maxCount = value; } } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ListComputeNodeOptions options = new ListComputeNodeOptions(this.BatchContext, this.PoolId, this.Pool, this.AdditionalBehaviors) { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/ResetBatchComputeNodeCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/ResetBatchComputeNodeCommand.cs index 64e008d7c884..bad273bbd406 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/ResetBatchComputeNodeCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/ResetBatchComputeNodeCommand.cs @@ -40,7 +40,7 @@ public class ResetBatchComputeNodeCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public ComputeNodeReimageOption? ReimageOption { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ReimageComputeNodeParameters parameters = new ReimageComputeNodeParameters(this.BatchContext, this.PoolId, this.Id, this.ComputeNode, this.AdditionalBehaviors) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/RestartBatchComputeNodeCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/RestartBatchComputeNodeCommand.cs index 0688865951b6..2f4c5897b288 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/RestartBatchComputeNodeCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/ComputeNodes/RestartBatchComputeNodeCommand.cs @@ -40,7 +40,7 @@ public class RestartBatchComputeNodeCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public ComputeNodeRebootOption? RebootOption { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { RebootComputeNodeParameters parameters = new RebootComputeNodeParameters(this.BatchContext, this.PoolId, this.Id, this.ComputeNode, this.AdditionalBehaviors) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileCommand.cs index 6d7d9a5cdb62..152efb8b6f20 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileCommand.cs @@ -89,7 +89,7 @@ public int MaxCount [Parameter(ParameterSetName = ParentComputeNodeObjectParameterSet)] public SwitchParameter Recursive { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ListNodeFileOptions options = new ListNodeFileOptions(this.BatchContext, this.JobId, this.TaskId, this.Task, this.PoolId, this.ComputeNodeId, this.ComputeNode, this.AdditionalBehaviors) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileContentCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileContentCommand.cs index 22f29cfbe42b..1cbf4950a5e1 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileContentCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchNodeFileContentCommand.cs @@ -73,7 +73,7 @@ public class GetBatchNodeFileContentCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public Stream DestinationStream { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { DownloadNodeFileOptions options = new DownloadNodeFileOptions(this.BatchContext, this.JobId, this.TaskId, this.PoolId, this.ComputeNodeId, this.Name, this.InputObject, this.DestinationPath, this.DestinationStream, this.AdditionalBehaviors); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchRemoteDesktopProtocolFileCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchRemoteDesktopProtocolFileCommand.cs index fe797cb00746..e12a9904a6a4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchRemoteDesktopProtocolFileCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Files/GetBatchRemoteDesktopProtocolFileCommand.cs @@ -52,7 +52,7 @@ public class GetBatchRemoteDesktopProtocolFileCommand : BatchObjectModelCmdletBa [ValidateNotNullOrEmpty] public Stream DestinationStream { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { DownloadRemoteDesktopProtocolFileOptions options = new DownloadRemoteDesktopProtocolFileOptions(this.BatchContext, this.PoolId, this.ComputeNodeId, this.ComputeNode, this.DestinationPath, this.DestinationStream, this.AdditionalBehaviors); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/DisableBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/DisableBatchJobScheduleCommand.cs index b4b44d2b0fb5..fba4e898ea16 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/DisableBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/DisableBatchJobScheduleCommand.cs @@ -25,7 +25,7 @@ public class DisableBatchJobScheduleCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public string Id { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { BatchClient.DisableJobSchedule(this.BatchContext, this.Id, this.AdditionalBehaviors); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/EnableBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/EnableBatchJobScheduleCommand.cs index e2b4298bd8ea..9ad6e1777ba3 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/EnableBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/EnableBatchJobScheduleCommand.cs @@ -25,7 +25,7 @@ public class EnableBatchJobScheduleCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public string Id { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { BatchClient.EnableJobSchedule(this.BatchContext, this.Id, this.AdditionalBehaviors); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/GetBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/GetBatchJobScheduleCommand.cs index 4fd7807634c9..84e70006e2a7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/GetBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/GetBatchJobScheduleCommand.cs @@ -40,7 +40,7 @@ public int MaxCount set { this.maxCount = value; } } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ListJobScheduleOptions options = new ListJobScheduleOptions(this.BatchContext, this.AdditionalBehaviors) { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/NewBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/NewBatchJobScheduleCommand.cs index 8d07e87d9756..a2153ee01804 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/NewBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/NewBatchJobScheduleCommand.cs @@ -43,7 +43,7 @@ public class NewBatchJobScheduleCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public IDictionary Metadata { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { NewJobScheduleParameters parameters = new NewJobScheduleParameters(this.BatchContext, this.Id, this.AdditionalBehaviors) { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs index e72c3cd314c5..73e3b34d9778 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/RemoveBatchJobScheduleCommand.cs @@ -28,7 +28,7 @@ public class RemoveBatchJobScheduleCommand : BatchObjectModelCmdletBase [Parameter] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ConfirmAction( Force.IsPresent, diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/DisableBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/DisableBatchJobCommand.cs index f7b4b55e0dac..b942b6e33e92 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/DisableBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/DisableBatchJobCommand.cs @@ -30,7 +30,7 @@ public class DisableBatchJobCommand : BatchObjectModelCmdletBase [Parameter(Position = 1, Mandatory = true, HelpMessage = "Specifies what to do with active tasks associated with the job.")] public DisableJobOption DisableJobOption { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { DisableJobParameters parameters = new DisableJobParameters(this.BatchContext, this.Id, null, this.DisableJobOption, this.AdditionalBehaviors); BatchClient.DisableJob(parameters); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/EnableBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/EnableBatchJobCommand.cs index 7f5ffe1ee6c7..b4fd5af070c2 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/EnableBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/EnableBatchJobCommand.cs @@ -25,7 +25,7 @@ public class EnableBatchJobCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public string Id { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { BatchClient.EnableJob(this.BatchContext, this.Id, this.AdditionalBehaviors); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobCommand.cs index b5c47303ff95..692f9b73bb2f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobCommand.cs @@ -50,7 +50,7 @@ public int MaxCount set { this.maxCount = value; } } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ListJobOptions options = new ListJobOptions(this.BatchContext, this.AdditionalBehaviors) { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/NewBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/NewBatchJobCommand.cs index 9f754e2224ea..ef025e7dc0d7 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/NewBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/NewBatchJobCommand.cs @@ -63,7 +63,7 @@ public class NewBatchJobCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public int Priority { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { NewJobParameters parameters = new NewJobParameters(this.BatchContext, this.Id, this.AdditionalBehaviors) { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs index fc0a41c1e8b5..6b244d4a3b50 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/RemoveBatchJobCommand.cs @@ -28,7 +28,7 @@ public class RemoveBatchJobCommand : BatchObjectModelCmdletBase [Parameter] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ConfirmAction( Force.IsPresent, diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/DisableBatchAutoScaleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/DisableBatchAutoScaleCommand.cs index fe966a6ee6c7..e6afbbc240c9 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/DisableBatchAutoScaleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/DisableBatchAutoScaleCommand.cs @@ -28,7 +28,7 @@ public class DisableBatchAutoScaleCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public string Id { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { PoolOperationParameters parameters = new PoolOperationParameters(this.BatchContext, this.Id, null, this.AdditionalBehaviors); BatchClient.DisableAutoScale(parameters); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs index 392d3fee53ec..41b53709b5b5 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/EnableBatchAutoScaleCommand.cs @@ -32,7 +32,7 @@ public class EnableBatchAutoScaleCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public string AutoScaleFormula { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AutoScaleParameters parameters = new AutoScaleParameters(this.BatchContext, this.Id, null, this.AutoScaleFormula, this.AdditionalBehaviors); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/GetBatchPoolCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/GetBatchPoolCommand.cs index 1f6f9be73a65..c93e0953c160 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/GetBatchPoolCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/GetBatchPoolCommand.cs @@ -42,7 +42,7 @@ public int MaxCount set { this.maxCount = value; } } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ListPoolOptions options = new ListPoolOptions(this.BatchContext, this.AdditionalBehaviors) { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs index d79d30d934c4..dfc7b3847948 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/NewBatchPoolCommand.cs @@ -82,7 +82,7 @@ public class NewBatchPoolCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public PSCertificateReference[] CertificateReferences { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { NewPoolParameters parameters = new NewPoolParameters(this.BatchContext, this.Id, this.AdditionalBehaviors) { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs index bd8a2b8d9fce..737b02005f9f 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/RemoveBatchPoolCommand.cs @@ -31,7 +31,7 @@ public class RemoveBatchPoolCommand : BatchObjectModelCmdletBase [Parameter] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ConfirmAction( Force.IsPresent, diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/SetBatchPoolOSVersionCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/SetBatchPoolOSVersionCommand.cs index 70ed5c563bc9..f9a5af8c3a3b 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/SetBatchPoolOSVersionCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/SetBatchPoolOSVersionCommand.cs @@ -32,7 +32,7 @@ public class SetBatchPoolOSVersionCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public string TargetOSVersion { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ChangeOSVersionParameters parameters = new ChangeOSVersionParameters(this.BatchContext, this.Id, null, this.TargetOSVersion, this.AdditionalBehaviors); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StartBatchPoolResizeCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StartBatchPoolResizeCommand.cs index edd625f4179f..6abc5bef3b8c 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StartBatchPoolResizeCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StartBatchPoolResizeCommand.cs @@ -40,7 +40,7 @@ public class StartBatchPoolResizeCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public ComputeNodeDeallocationOption? ComputeNodeDeallocationOption { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { PoolResizeParameters parameters = new PoolResizeParameters(this.BatchContext, this.Id, null, this.AdditionalBehaviors) { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StopBatchPoolResizeCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StopBatchPoolResizeCommand.cs index fce95ea0841a..11e00655b7d4 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StopBatchPoolResizeCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/StopBatchPoolResizeCommand.cs @@ -24,7 +24,7 @@ public class StopBatchPoolResizeCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public string Id { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { BatchClient.StopResizePool(this.BatchContext, this.Id, this.AdditionalBehaviors); } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs index 75517c7ff7b2..b1681af710f0 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Pools/TestBatchAutoScaleCommand.cs @@ -32,7 +32,7 @@ public class TestBatchAutoScaleCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public string AutoScaleFormula { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AutoScaleParameters parameters = new AutoScaleParameters(this.BatchContext, this.Id, null, this.AutoScaleFormula, this.AdditionalBehaviors); diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/GetBatchTaskCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/GetBatchTaskCommand.cs index 4ca3c609fea8..c28fb7ffad8d 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/GetBatchTaskCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/GetBatchTaskCommand.cs @@ -51,7 +51,7 @@ public int MaxCount set { this.maxCount = value; } } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ListTaskOptions options = new ListTaskOptions(this.BatchContext, this.JobId, this.Job, this.AdditionalBehaviors) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs index eb16280be27e..027edfca98cf 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/NewBatchTaskCommand.cs @@ -63,7 +63,7 @@ public class NewBatchTaskCommand : BatchObjectModelCmdletBase [ValidateNotNullOrEmpty] public PSTaskConstraints Constraints { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { NewTaskParameters parameters = new NewTaskParameters(this.BatchContext, this.JobId, this.Job, this.Id, this.AdditionalBehaviors) diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs index 4643a8a522c4..532ba83a51c8 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Tasks/RemoveBatchTaskCommand.cs @@ -39,7 +39,7 @@ public class RemoveBatchTaskCommand : BatchObjectModelCmdletBase [Parameter] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { string taskId = InputObject == null ? this.Id : InputObject.Id; TaskOperationParameters parameters = new TaskOperationParameters(this.BatchContext, this.JobId, diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj index 91731144247c..2a6168cd92ee 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj +++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj @@ -52,7 +52,6 @@ False ..\..\..\packages\AutoMapper.3.1.1\lib\net40\AutoMapper.dll - ..\..\..\packages\Hyak.Common.1.0.2\lib\portable-net403+win+wpa81\Hyak.Common.dll @@ -293,10 +292,6 @@ {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common - - {c60342b1-47d3-4a0e-8081-9b97ce60b7af} - Commands.Profile - {98cfd96b-a6bc-4f15-ae2c-603fc2b58981} Commands.Network diff --git a/src/ResourceManager/Compute/Commands.Compute/RemoteDesktop/GetAzureRemoteDesktopFileCommand.cs b/src/ResourceManager/Compute/Commands.Compute/RemoteDesktop/GetAzureRemoteDesktopFileCommand.cs index 258c8c1f7636..046e8f1ccc55 100644 --- a/src/ResourceManager/Compute/Commands.Compute/RemoteDesktop/GetAzureRemoteDesktopFileCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/RemoteDesktop/GetAzureRemoteDesktopFileCommand.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using System; +using System.Diagnostics; using System.IO; using System.Linq; using System.Management.Automation; @@ -46,15 +47,32 @@ public class GetAzureRemoteDesktopFileCommand : VirtualMachineRemoteDesktopBaseC Mandatory = true, Position = 2, ValueFromPipelineByPropertyName = true, - HelpMessage = "Path and name of the output RDP file.")] + HelpMessage = "Path and name of the output RDP file.", + ParameterSetName = "Download")] + [Parameter( + Mandatory = false, + Position = 2, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Path and name of the output RDP file.", + ParameterSetName = "Launch")] [ValidateNotNullOrEmpty] - public string LocalPath { get; set;} + public string LocalPath { get; set; } + + [Parameter( + Mandatory = true, + Position = 3, + HelpMessage = "Start a remote desktop session to the specified role instance.", + ParameterSetName = "Launch")] + public SwitchParameter Launch + { + get; + set; + } public override void ExecuteCmdlet() { base.ExecuteCmdlet(); - ExecuteClientAction(() => { const string fullAddressPrefix = "full address:s:"; @@ -138,11 +156,46 @@ public override void ExecuteCmdlet() } // Write to file - using (var file = new StreamWriter(this.LocalPath)) + string rdpFilePath = this.LocalPath ?? Path.GetTempFileName(); + + using (var file = new StreamWriter(rdpFilePath)) { file.WriteLine(fullAddressPrefix + address + ":" + port); file.WriteLine(promptCredentials); } + + if (Launch.IsPresent) + { + var startInfo = new ProcessStartInfo + { + CreateNoWindow = true, + WindowStyle = ProcessWindowStyle.Hidden + }; + + if (this.LocalPath == null) + { + string scriptGuid = Guid.NewGuid().ToString(); + + string launchRDPScript = Path.GetTempPath() + scriptGuid + ".bat"; + using (var scriptStream = File.OpenWrite(launchRDPScript)) + { + var writer = new StreamWriter(scriptStream); + writer.WriteLine("start /wait mstsc.exe " + rdpFilePath); + writer.WriteLine("del " + rdpFilePath); + writer.WriteLine("del " + launchRDPScript); + writer.Flush(); + } + + startInfo.FileName = launchRDPScript; + } + else + { + startInfo.FileName = "mstsc.exe"; + startInfo.Arguments = rdpFilePath; + } + + Process.Start(startInfo); + } }); } 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 d9593b4ee977..5dc31cab62cf 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Commands.DataFactories.Test.csproj @@ -284,6 +284,10 @@ + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + {c1bda476-a5cc-4394-914d-48b0ec31a710} Commands.ScenarioTests.Common @@ -292,18 +296,6 @@ {65c3a86a-716d-4e7d-ab67-1db00b3bf72d} Commands.Common.Storage - - {3b48a77b-5956-4a62-9081-92ba04b02b27} - Commands.Common.Test - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - - - {bc420543-c04e-4bf3-96e1-cd81b823bdd7} - Commands.Test.Utilities - {9577252e-0a6b-4d61-86e8-95f7f309a987} Commands.DataFactories diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs index 8f1f63079ba3..e4c9beff79b1 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/Properties/AssemblyInfo.cs @@ -24,7 +24,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Microsoft.Azure.Commands.DataFactories.Test")] -[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] +[assembly: AssemblyCopyright("Microsoft Corporation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ [assembly: Guid("8E86B542-B22F-44B6-8053-3F5118E04DEA")] -[assembly: AssemblyVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyVersion)] -[assembly: AssemblyFileVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyFileVersion)] +[assembly: AssemblyVersion("1.0.0")] +[assembly: AssemblyFileVersion("1.0.0")] diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/DataFactoriesScenarioTestsBase.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/DataFactoriesScenarioTestsBase.cs index faf5a4a863d0..fbbfebdbf4a2 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/DataFactoriesScenarioTestsBase.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/ScenarioTests/DataFactoriesScenarioTestsBase.cs @@ -23,10 +23,11 @@ using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.WindowsAzure.Management.Storage; using Microsoft.Azure.Test; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; namespace Microsoft.Azure.Commands.DataFactories.Test { - public abstract class DataFactoriesScenarioTestsBase + public abstract class DataFactoriesScenarioTestsBase : RMTestBase { private EnvironmentSetupHelper helper; diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/DataFactoryUnitTestBase.cs b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/DataFactoryUnitTestBase.cs index 6115f7109917..e470e134188f 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/DataFactoryUnitTestBase.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories.Test/UnitTests/DataFactoryUnitTestBase.cs @@ -13,11 +13,12 @@ // ---------------------------------------------------------------------------------- using System.Management.Automation; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; namespace Microsoft.Azure.Commands.DataFactories.Test { - public class DataFactoryUnitTestBase + public class DataFactoryUnitTestBase : RMTestBase { protected const string subscriptionId = "subscriptionid"; diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj b/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj index f64b3eca1197..3c86fa9996cc 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Commands.DataFactories.csproj @@ -230,20 +230,6 @@ - - - {65c3a86a-716d-4e7d-ab67-1db00b3bf72d} - Commands.Common.Storage - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - - - {c60342b1-47d3-4a0e-8081-9b97ce60b7af} - Commands.Profile - - Designer @@ -268,6 +254,12 @@ Designer + + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + + diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/GetAzureDataFactoryCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/GetAzureDataFactoryCommand.cs index 4391c09efbf6..ccefc30c1d96 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/GetAzureDataFactoryCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/GetAzureDataFactoryCommand.cs @@ -29,7 +29,7 @@ public class GetAzureDataFactoryCommand : DataFactoryBaseCmdlet public string Name { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { // ValidationNotNullOrEmpty doesn't handle whitespaces well if (Name != null && string.IsNullOrWhiteSpace(Name)) diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/NewAzureDataFactoryCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/NewAzureDataFactoryCommand.cs index bd6e0676fb78..7b92efa0f00a 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/NewAzureDataFactoryCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/NewAzureDataFactoryCommand.cs @@ -40,7 +40,7 @@ public class NewAzureDataFactoryCommand : DataFactoryBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { CreatePSDataFactoryParameters parameters = new CreatePSDataFactoryParameters() { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/RemoveAzureDataFactoryCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/RemoveAzureDataFactoryCommand.cs index 213d73f87646..b4506026b75d 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/RemoveAzureDataFactoryCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactories/RemoveAzureDataFactoryCommand.cs @@ -37,7 +37,7 @@ public class RemoveAzureDataFactoryCommand : DataFactoryBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactoryBaseCmdlet.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactoryBaseCmdlet.cs index 9ca2d778579a..43c92c399d90 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactoryBaseCmdlet.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataFactoryBaseCmdlet.cs @@ -19,10 +19,11 @@ using Microsoft.WindowsAzure; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Hyak.Common; +using Microsoft.Azure.Commands.ResourceManager.Common; namespace Microsoft.Azure.Commands.DataFactories { - public abstract class DataFactoryBaseCmdlet : AzureSMCmdlet + public abstract class DataFactoryBaseCmdlet : AzureRMCmdlet { private DataFactoryClient dataFactoryClient; @@ -40,7 +41,7 @@ internal DataFactoryClient DataFactoryClient { if (this.dataFactoryClient == null) { - this.dataFactoryClient = new DataFactoryClient(Profile); + this.dataFactoryClient = new DataFactoryClient(DefaultContext); } return this.dataFactoryClient; } @@ -88,5 +89,13 @@ protected string ResolveResourceName(string rawJsonContent, string nameFromCmdle return resolvedResourceName; } + + /// + /// This is added for tests purpose only, should step down in the future. + /// + public void ExecuteCmdlet() + { + ProcessRecord(); + } } } diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactoryRunCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactoryRunCommand.cs index c7c56aa88409..42e95be4179d 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactoryRunCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactoryRunCommand.cs @@ -44,7 +44,7 @@ public class GetAzureDataFactoryRunCommand : DataFactoryBaseCmdlet public DateTime StartDateTime { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs index 3d013b2eb6e8..6c187ea7726f 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs @@ -46,7 +46,7 @@ public DateTime EndDateTime } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SaveAzureDataFactoryLog.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SaveAzureDataFactoryLog.cs index d3511b8341f7..6ebb0cf092b5 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SaveAzureDataFactoryLog.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SaveAzureDataFactoryLog.cs @@ -48,7 +48,7 @@ public class SaveAzureDataFactoryLog : DataFactoryBaseCmdlet public string Output { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs index 4b2087870c76..1f12bbcb9207 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs @@ -68,7 +68,7 @@ public string UpdateType } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/GetAzureDataFactoryDatasetCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/GetAzureDataFactoryDatasetCommand.cs index cecc213d5643..01fa855dd572 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/GetAzureDataFactoryDatasetCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/GetAzureDataFactoryDatasetCommand.cs @@ -39,7 +39,7 @@ public class GetAzureDataFactoryDatasetCommand : DataFactoryBaseCmdlet public string Name { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { // ValidationNotNullOrEmpty doesn't handle whitespaces well if (Name != null && string.IsNullOrWhiteSpace(Name)) diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/NewAzureDataFactoryDatasetCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/NewAzureDataFactoryDatasetCommand.cs index af21f8f3c7b4..537928c3330f 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/NewAzureDataFactoryDatasetCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/NewAzureDataFactoryDatasetCommand.cs @@ -45,7 +45,7 @@ public class NewAzureDataFactoryDatasetCommand : DataFactoryBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/RemoveAzureDataFactoryDatasetCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/RemoveAzureDataFactoryDatasetCommand.cs index a23744b7e384..40fb181c702b 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/RemoveAzureDataFactoryDatasetCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Datasets/RemoveAzureDataFactoryDatasetCommand.cs @@ -27,7 +27,7 @@ public class RemoveAzureDataFactoryDatasetCommand : DatasetContextBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Encrypt/NewAzureDataFactoryEncryptValueCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Encrypt/NewAzureDataFactoryEncryptValueCommand.cs index b8ad8dbac32e..597b4eb616ab 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Encrypt/NewAzureDataFactoryEncryptValueCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Encrypt/NewAzureDataFactoryEncryptValueCommand.cs @@ -74,7 +74,7 @@ public class NewAzureDataFactoryEncryptValueCommand : DataFactoryBaseCmdlet public string Database { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/GetAzureDataFactoryGatewayCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/GetAzureDataFactoryGatewayCommand.cs index dc229072b55c..acd0abdfdc92 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/GetAzureDataFactoryGatewayCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/GetAzureDataFactoryGatewayCommand.cs @@ -41,7 +41,7 @@ public class GetAzureDataFactoryGatewayCommand : DataFactoryBaseCmdlet public string Name { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayCommand.cs index c3291f14b3c4..c8d5ca4c897f 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayCommand.cs @@ -44,7 +44,7 @@ public class NewAzureDataFactoryGatewayCommand : DataFactoryBaseCmdlet HelpMessage = "The description to update.")] public string Description { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayKeyCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayKeyCommand.cs index 7b33288d3427..2bed29a16eb4 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayKeyCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayKeyCommand.cs @@ -37,7 +37,7 @@ public class NewAzureDataFactoryGatewayKeyCommand : DataFactoryBaseCmdlet [ValidateNotNullOrEmpty] public string GatewayName { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/RemoveAzureDataFactoryGatewayCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/RemoveAzureDataFactoryGatewayCommand.cs index bb61e86dcdf9..1c2d33d88e39 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/RemoveAzureDataFactoryGatewayCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/RemoveAzureDataFactoryGatewayCommand.cs @@ -42,7 +42,7 @@ public class RemoveAzureDataFactoryGatewayCommand : DataFactoryBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/SetAzureDataFactoryGatewayCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/SetAzureDataFactoryGatewayCommand.cs index d6148b6380d5..d71f7a8920ec 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/SetAzureDataFactoryGatewayCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/SetAzureDataFactoryGatewayCommand.cs @@ -43,7 +43,7 @@ public class SetAzureDataFactoryGatewayCommand : DataFactoryBaseCmdlet public string Description { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/GetAzureDataFactoryHubCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/GetAzureDataFactoryHubCommand.cs index b18a7fd12e48..10363ec5926f 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/GetAzureDataFactoryHubCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/GetAzureDataFactoryHubCommand.cs @@ -30,7 +30,7 @@ public class GetAzureDataFactoryHubCommand : HubContextBaseCmdlet public string Name { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { // ValidationNotNullOrEmpty doesn't handle whitespaces well if (Name != null && string.IsNullOrWhiteSpace(Name)) diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/NewAzureDataFactoryHubCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/NewAzureDataFactoryHubCommand.cs index d72036fa521f..ffc9f3edf3d8 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/NewAzureDataFactoryHubCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/NewAzureDataFactoryHubCommand.cs @@ -37,7 +37,7 @@ public class NewAzureDataFactoryHubCommand : HubContextBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/RemoveAzureDataFactoryHubCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/RemoveAzureDataFactoryHubCommand.cs index 268ae8733d3a..b8c2ca5020b3 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/RemoveAzureDataFactoryHubCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Hubs/RemoveAzureDataFactoryHubCommand.cs @@ -33,7 +33,7 @@ public class RemoveAzureDataFactoryHubCommand : HubContextBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/GetAzureDataFactoryLinkedServiceCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/GetAzureDataFactoryLinkedServiceCommand.cs index 3a06df309109..2ece4bbedcba 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/GetAzureDataFactoryLinkedServiceCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/GetAzureDataFactoryLinkedServiceCommand.cs @@ -39,7 +39,7 @@ public class GetAzureDataFactoryLinkedServiceCommand : DataFactoryBaseCmdlet public string Name { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { // ValidationNotNullOrEmpty doesn't handle whitespaces well if (Name != null && string.IsNullOrWhiteSpace(Name)) diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/NewAzureDataFactoryLinkedServiceCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/NewAzureDataFactoryLinkedServiceCommand.cs index 9c9bec6cd93f..649e6bd2de1c 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/NewAzureDataFactoryLinkedServiceCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/NewAzureDataFactoryLinkedServiceCommand.cs @@ -47,7 +47,7 @@ public class NewAzureDataFactoryLinkedServiceCommand : DataFactoryBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/RemoveAzureDataFactoryLinkedServiceCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/RemoveAzureDataFactoryLinkedServiceCommand.cs index 0f23b00229b7..5d819385686c 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/RemoveAzureDataFactoryLinkedServiceCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/LinkedServices/RemoveAzureDataFactoryLinkedServiceCommand.cs @@ -27,7 +27,7 @@ public class RemoveAzureDataFactoryLinkedServiceCommand : LinkedServiceContextBa public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.cs index ef91ae003dc7..a178e687ac83 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Models/DataFactoryClient.cs @@ -29,10 +29,10 @@ public partial class DataFactoryClient { public IDataFactoryManagementClient DataPipelineManagementClient { get; private set; } - public DataFactoryClient(AzureSMProfile profile) + public DataFactoryClient(AzureContext context) { DataPipelineManagementClient = AzureSession.ClientFactory.CreateClient( - profile, AzureEnvironment.Endpoint.ResourceManager); + context, AzureEnvironment.Endpoint.ResourceManager); } /// diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/GetAzureDataFactoryPipelineCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/GetAzureDataFactoryPipelineCommand.cs index a217c853b583..dd435caa6963 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/GetAzureDataFactoryPipelineCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/GetAzureDataFactoryPipelineCommand.cs @@ -42,7 +42,7 @@ public class GetAzureDataFactoryPipelineCommand : DataFactoryBaseCmdlet public string DataFactoryName { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { // ValidationNotNullOrEmpty doesn't handle whitespaces well if (Name != null && string.IsNullOrWhiteSpace(Name)) diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/NewAzureDataFactoryPipelineCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/NewAzureDataFactoryPipelineCommand.cs index cac96f3af6b8..b2e0ed75f23c 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/NewAzureDataFactoryPipelineCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/NewAzureDataFactoryPipelineCommand.cs @@ -46,7 +46,7 @@ public class NewAzureDataFactoryPipelineCommand : DataFactoryBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/RemoveAzureDataFactoryPipelineCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/RemoveAzureDataFactoryPipelineCommand.cs index bff58234c6f9..8326c66d72c6 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/RemoveAzureDataFactoryPipelineCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/RemoveAzureDataFactoryPipelineCommand.cs @@ -29,7 +29,7 @@ public class RemoveAzureDataFactoryPipelineCommand : PipelineContextBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/ResumeAzureDataFactoryPipelineCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/ResumeAzureDataFactoryPipelineCommand.cs index bc831ff12075..0422d48c1959 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/ResumeAzureDataFactoryPipelineCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/ResumeAzureDataFactoryPipelineCommand.cs @@ -28,7 +28,7 @@ public class ResumeAzureDataFactoryPipelineCommand : PipelineContextBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/SetAzureDataFactoryPipelineActivePeriodCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/SetAzureDataFactoryPipelineActivePeriodCommand.cs index 350c914273dd..e26e57177a7c 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/SetAzureDataFactoryPipelineActivePeriodCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/SetAzureDataFactoryPipelineActivePeriodCommand.cs @@ -70,7 +70,7 @@ public DateTime EndDateTime public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/SuspendAzureDataFactoryPipelineCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/SuspendAzureDataFactoryPipelineCommand.cs index 59fd239eb92e..319ff278f1a5 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/SuspendAzureDataFactoryPipelineCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Pipelines/SuspendAzureDataFactoryPipelineCommand.cs @@ -28,7 +28,7 @@ public class SuspendAzureDataFactoryPipelineCommand : PipelineContextBaseCmdlet public SwitchParameter Force { get; set; } [EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)] - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (ParameterSetName == ByFactoryObject) { 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 3d9b12b723d7..88176b3867ff 100644 --- a/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj +++ b/src/ResourceManager/Dns/Commands.Dns.Test/Commands.Dns.Test.csproj @@ -67,10 +67,6 @@ False ..\..\..\packages\Microsoft.Azure.Management.Dns.1.2.1-preview\lib\net40\Microsoft.Azure.Management.Dns.dll - - False - ..\..\..\packages\Microsoft.Azure.Monitoring.2.2.1-preview\lib\net40\Microsoft.Azure.Monitoring.dll - False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.7-preview\lib\net40\Microsoft.Azure.ResourceManager.dll @@ -159,30 +155,18 @@ + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + {c1bda476-a5cc-4394-914d-48b0ec31a710} Commands.ScenarioTests.Common - - {bc420543-c04e-4bf3-96e1-cd81b823bdd7} - Commands.Test.Utilities - {e1f5201d-6067-430e-b303-4e367652991b} Commands.Resources - - {65c3a86a-716d-4e7d-ab67-1db00b3bf72d} - Commands.Common.Storage - - - {3b48a77b-5956-4a62-9081-92ba04b02b27} - Commands.Common.Test - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - {3cae1b57-ffec-4945-a6c5-6e5e8dea4ba9} Commands.Dns diff --git a/src/ResourceManager/Dns/Commands.Dns.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/Dns/Commands.Dns.Test/Properties/AssemblyInfo.cs index 9018e7dbfc26..6c9e4c8f28a5 100644 --- a/src/ResourceManager/Dns/Commands.Dns.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Dns/Commands.Dns.Test/Properties/AssemblyInfo.cs @@ -21,7 +21,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Microsoft.Azure.Commands.Dns.Test")] -[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] +[assembly: AssemblyCopyright("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -33,5 +33,5 @@ // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("4623A8BD-075F-4B7C-9971-FBEDBFBDE521")] -[assembly: AssemblyVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyVersion)] -[assembly: AssemblyFileVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyFileVersion)] +[assembly: AssemblyVersion("1.0.0")] +[assembly: AssemblyFileVersion("1.0.0")] diff --git a/src/ResourceManager/Dns/Commands.Dns.Test/ScenarioTests/DnsTestsBase.cs b/src/ResourceManager/Dns/Commands.Dns.Test/ScenarioTests/DnsTestsBase.cs index 56b66322df6b..f1739c0bbbcc 100644 --- a/src/ResourceManager/Dns/Commands.Dns.Test/ScenarioTests/DnsTestsBase.cs +++ b/src/ResourceManager/Dns/Commands.Dns.Test/ScenarioTests/DnsTestsBase.cs @@ -14,19 +14,20 @@ namespace Microsoft.Azure.Commands.ScenarioTest.DnsTests { - using System; - using System.Linq; - using Microsoft.Azure.Common.Authentication; - using Microsoft.Azure.Gallery; - using Microsoft.Azure.Management.Authorization; - using Microsoft.Azure.Management.Resources; - using Microsoft.Azure.Test; + using System; + using System.Linq; + using Microsoft.Azure.Common.Authentication; + using Microsoft.Azure.Gallery; + using Microsoft.Azure.Management.Authorization; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Test; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Microsoft.Azure.Management.Dns; using Microsoft.Azure.Subscriptions; - - - public class DnsTestsBase + using WindowsAzure.Commands.Test.Utilities.Common; + using Dns.Models; + + public class DnsTestsBase : RMTestBase { private CSMTestEnvironmentFactory csmTestFactory; diff --git a/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj b/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj index bfc2a557e6c2..32a00f0fd0cc 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj +++ b/src/ResourceManager/Dns/Commands.Dns/Commands.Dns.csproj @@ -164,9 +164,9 @@ - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common {2493a8f7-1949-4f29-8d53-9d459046c3b8} diff --git a/src/ResourceManager/Dns/Commands.Dns/Models/DnsBaseCmdlet.cs b/src/ResourceManager/Dns/Commands.Dns/Models/DnsBaseCmdlet.cs index 5d38e176ff11..e00720beef64 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Models/DnsBaseCmdlet.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Models/DnsBaseCmdlet.cs @@ -12,11 +12,12 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.Dns.Models { - public abstract class DnsBaseCmdlet : AzureSMCmdlet + public abstract class DnsBaseCmdlet : AzureRMCmdlet { private DnsClient dnsClient; @@ -26,12 +27,20 @@ public DnsClient DnsClient { if (dnsClient == null) { - dnsClient = new DnsClient(this.Profile); + dnsClient = new DnsClient(DefaultContext); } return dnsClient; } set { dnsClient = value; } } + + /// + /// Added for tests only, should be removed in the future. + /// + public void ExecuteCmdlet() + { + ProcessRecord(); + } } } diff --git a/src/ResourceManager/Dns/Commands.Dns/Models/DnsClient.cs b/src/ResourceManager/Dns/Commands.Dns/Models/DnsClient.cs index c0fc6f2939f3..90773f8a3c2c 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Models/DnsClient.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Models/DnsClient.cs @@ -32,8 +32,8 @@ public class DnsClient { public const string DnsResourceLocation = "global"; - public DnsClient(AzureSMProfile profile) - : this(AzureSession.ClientFactory.CreateClient(profile, AzureEnvironment.Endpoint.ResourceManager)) + public DnsClient(AzureContext context) + : this(AzureSession.ClientFactory.CreateClient(context, AzureEnvironment.Endpoint.ResourceManager)) { } diff --git a/src/ResourceManager/Dns/Commands.Dns/Records/AddAzureDnsRecordConfig.cs b/src/ResourceManager/Dns/Commands.Dns/Records/AddAzureDnsRecordConfig.cs index 7e69f71f2837..b8a26bfd6890 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Records/AddAzureDnsRecordConfig.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Records/AddAzureDnsRecordConfig.cs @@ -81,7 +81,7 @@ public class AddAzureDnsRecordConfig : DnsBaseCmdlet [ValidateNotNullOrEmpty] public string Cname { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var result = this.RecordSet; if (!string.Equals(this.ParameterSetName, this.RecordSet.RecordType.ToString(), StringComparison.OrdinalIgnoreCase)) diff --git a/src/ResourceManager/Dns/Commands.Dns/Records/GetAzureDnsRescordSet.cs b/src/ResourceManager/Dns/Commands.Dns/Records/GetAzureDnsRescordSet.cs index 868be904d5bc..c3cda7a42017 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Records/GetAzureDnsRescordSet.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Records/GetAzureDnsRescordSet.cs @@ -54,7 +54,7 @@ public class GetAzureDnsRecordSet : DnsBaseCmdlet [ValidateNotNullOrEmpty] public string EndsWith { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { RecordType recordType = default(RecordType); if (this.RecordType != null && !Enum.TryParse(this.RecordType, false, out recordType)) diff --git a/src/ResourceManager/Dns/Commands.Dns/Records/NewAzureDnsRescordSet.cs b/src/ResourceManager/Dns/Commands.Dns/Records/NewAzureDnsRescordSet.cs index 8b05b759505f..1f62cd4ffe06 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Records/NewAzureDnsRescordSet.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Records/NewAzureDnsRescordSet.cs @@ -61,7 +61,7 @@ public class NewAzureDnsRecordSet : DnsBaseCmdlet [Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { string zoneName = null; string resourceGroupname = null; diff --git a/src/ResourceManager/Dns/Commands.Dns/Records/RemoveAzureDnsRecordConfig.cs b/src/ResourceManager/Dns/Commands.Dns/Records/RemoveAzureDnsRecordConfig.cs index fe05bd77b830..06bc57e6377c 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Records/RemoveAzureDnsRecordConfig.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Records/RemoveAzureDnsRecordConfig.cs @@ -80,7 +80,7 @@ public class RemoveAzureDnsRecordConfig : DnsBaseCmdlet [ValidateNotNullOrEmpty] public string Cname { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var result = this.RecordSet; if (!string.Equals(this.ParameterSetName, this.RecordSet.RecordType.ToString(), StringComparison.OrdinalIgnoreCase)) diff --git a/src/ResourceManager/Dns/Commands.Dns/Records/RemoveAzureDnsRecordSet.cs b/src/ResourceManager/Dns/Commands.Dns/Records/RemoveAzureDnsRecordSet.cs index 4101e6b62136..a941d66b6c74 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Records/RemoveAzureDnsRecordSet.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Records/RemoveAzureDnsRecordSet.cs @@ -62,7 +62,7 @@ public class RemoveAzureDnsRecordSet : DnsBaseCmdlet [Parameter(Mandatory = false)] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { bool deleted = false; DnsRecordSet recordSetToDelete = null; diff --git a/src/ResourceManager/Dns/Commands.Dns/Records/SetAzureDnsRecordSet.cs b/src/ResourceManager/Dns/Commands.Dns/Records/SetAzureDnsRecordSet.cs index 7aafb827c153..41826fc832b8 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Records/SetAzureDnsRecordSet.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Records/SetAzureDnsRecordSet.cs @@ -33,7 +33,7 @@ public class SetAzureDnsRecordSet : DnsBaseCmdlet [Parameter(Mandatory = false, HelpMessage = "Do not use the ETag field of the RecordSet parameter for optimistic concurrency checks.", ParameterSetName = "Object")] public SwitchParameter Overwrite { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if ((string.IsNullOrWhiteSpace(this.RecordSet.Etag) || this.RecordSet.Etag == "*") && !this.Overwrite.IsPresent) { diff --git a/src/ResourceManager/Dns/Commands.Dns/Zones/GetAzureDnsZone.cs b/src/ResourceManager/Dns/Commands.Dns/Zones/GetAzureDnsZone.cs index 5615cc305400..6d607e5f8640 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Zones/GetAzureDnsZone.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Zones/GetAzureDnsZone.cs @@ -38,7 +38,7 @@ public class GetAzureDnsZone : DnsBaseCmdlet [ValidateNotNullOrEmpty] public string EndsWith { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (this.Name != null && this.EndsWith != null) { diff --git a/src/ResourceManager/Dns/Commands.Dns/Zones/NewAzureDnsZone.cs b/src/ResourceManager/Dns/Commands.Dns/Zones/NewAzureDnsZone.cs index 24a12d6b2575..4c8681760f9b 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Zones/NewAzureDnsZone.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Zones/NewAzureDnsZone.cs @@ -38,7 +38,7 @@ public class NewAzureDnsZone : DnsBaseCmdlet [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "A hash table which represents resource tags.")] public Hashtable[] Tag { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (this.Name.EndsWith(".")) { diff --git a/src/ResourceManager/Dns/Commands.Dns/Zones/RemoveAzureDnsZone.cs b/src/ResourceManager/Dns/Commands.Dns/Zones/RemoveAzureDnsZone.cs index db97a02c944d..188bdf9407d6 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Zones/RemoveAzureDnsZone.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Zones/RemoveAzureDnsZone.cs @@ -48,7 +48,7 @@ public class RemoveAzureDnsZone : DnsBaseCmdlet [Parameter(Mandatory = false)] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { bool deleted = false; DnsZone zoneToDelete = null; diff --git a/src/ResourceManager/Dns/Commands.Dns/Zones/SetAzureDnsZone.cs b/src/ResourceManager/Dns/Commands.Dns/Zones/SetAzureDnsZone.cs index e18af1a330aa..173ae0e1e6f5 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Zones/SetAzureDnsZone.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Zones/SetAzureDnsZone.cs @@ -45,7 +45,7 @@ public class SetAzureDnsZone : DnsBaseCmdlet [Parameter(Mandatory = false, HelpMessage = "Do not use the ETag field of the RecordSet parameter for optimistic concurrency checks.", ParameterSetName = "Object")] public SwitchParameter Overwrite { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { DnsZone result = null; DnsZone zoneToUpdate = null; 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 6eb3f88dfe98..e5efcc48539c 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -38,8 +38,9 @@ ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.dll - - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.0.26-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.1.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + True ..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll @@ -62,17 +63,29 @@ ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll - - ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5571.32271-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll + + ..\..\..\packages\Microsoft.Azure.Test.Framework.1.0.5715.36130-prerelease\lib\net45\Microsoft.Azure.Test.Framework.dll + True - - ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5513.27084-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll + + ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5714.27258-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll + True - - ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll + True - - ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.14.201151115\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll + True + + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.2.0\lib\net45\Microsoft.Rest.ClientRuntime.dll + True + + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.9.3\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll + True ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll @@ -96,14 +109,6 @@ - - False - ..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Extensions.dll - - - False - ..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll - @@ -135,9 +140,9 @@ - - {5EE72C53-1720-4309-B54B-5FB79703195F} - Commands.Common + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common {c1bda476-a5cc-4394-914d-48b0ec31a710} diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/ScenarioTests/HDInsightConfigurationTests.cs b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/ScenarioTests/HDInsightConfigurationTests.cs index e354c5475908..baae99033d0e 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/ScenarioTests/HDInsightConfigurationTests.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/ScenarioTests/HDInsightConfigurationTests.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.HDInsight.Test { public class HDInsightConfigurationTests : HDInsightScenarioTestsBase { - [Fact] + [Fact(Skip = "Test requires setting env variable, TODO remove that constraint")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestConfigurationPipelining() { diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/ScenarioTests/HDInsightScenarioTestsBase.cs b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/ScenarioTests/HDInsightScenarioTestsBase.cs index e0370c7d5a3b..ed6d1661d085 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/ScenarioTests/HDInsightScenarioTestsBase.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/ScenarioTests/HDInsightScenarioTestsBase.cs @@ -17,10 +17,11 @@ using Microsoft.Azure.Test; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; namespace Microsoft.Azure.Commands.HDInsight.Test { - public abstract class HDInsightScenarioTestsBase + public abstract class HDInsightScenarioTestsBase : RMTestBase { private EnvironmentSetupHelper helper; diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/UnitTests/JobTests.cs b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/UnitTests/JobTests.cs index 1bc5364202f2..d9190c27d9e3 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/UnitTests/JobTests.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/UnitTests/JobTests.cs @@ -195,7 +195,7 @@ public void CreateStreamingJob() job.Reducer == reducer && job.Defines.Count == defines.Count))); } - [Fact] + [Fact(Skip = "Test requires setting env variable, TODO remove that constraint")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void StartJob() { diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config index 2fac4d3e5c4b..99720d30dbb7 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config +++ b/src/ResourceManager/HDInsight/Commands.HDInsight.Test/packages.config @@ -2,7 +2,7 @@ - + @@ -11,12 +11,14 @@ - + - + + + diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj b/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj index c1bad4eec0f7..113fccb4f744 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj @@ -163,12 +163,6 @@ - - ..\..\..\packages\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Extensions.dll - - - ..\..\..\packages\Microsoft.Net.Http.2.2.22\lib\net45\System.Net.Http.Primitives.dll - False @@ -176,13 +170,13 @@ - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - + - + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/HDInsightCmdletBase.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/HDInsightCmdletBase.cs index 5248568f65dd..094268e8291c 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/HDInsightCmdletBase.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/HDInsightCmdletBase.cs @@ -16,11 +16,12 @@ using System.Linq; using Hyak.Common; using Microsoft.Azure.Commands.HDInsight.Models; +using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.HDInsight.Commands { - public class HDInsightCmdletBase : AzureSMCmdlet + public class HDInsightCmdletBase : AzureRMCmdlet { private AzureHdInsightManagementClient _hdInsightManagementClient; private AzureHdInsightJobManagementClient _hdInsightJobClient; @@ -31,7 +32,7 @@ public AzureHdInsightManagementClient HDInsightManagementClient { get { return _hdInsightManagementClient ?? - (_hdInsightManagementClient = new AzureHdInsightManagementClient(Profile.DefaultContext)); + (_hdInsightManagementClient = new AzureHdInsightManagementClient(DefaultContext)); } set { _hdInsightManagementClient = value; } } @@ -45,7 +46,6 @@ public AzureHdInsightJobManagementClient HDInsightJobClient return new AzureHdInsightJobManagementClient(_clusterName, _credential); } return _hdInsightJobClient; - //return _hdInsightJobClient ?? (_hdInsightJobClient = new AzureHdInsightJobManagementClient(_clusterName, _credential)); } set { _hdInsightJobClient = value; } } @@ -83,5 +83,13 @@ protected string GetClusterConnection(string resourceGroupName, string clusterNa } return httpEndpoint; } + + /// + /// Added for test code only, should be removed in the future. + /// + public void ExecuteCmdlet() + { + ProcessRecord(); + } } } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs index b93686666eb6..87dabf2d494d 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobCommand.cs @@ -66,7 +66,7 @@ public PSCredential ClusterCredential HelpMessage = "The JobID of the jobDetails to stop.")] public string JobId { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { _clusterName = GetClusterConnection(ResourceGroupName, ClusterName); if (JobId != null) diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs index 84d0b29893e7..d0342769f32e 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs @@ -79,7 +79,7 @@ public PSCredential ClusterCredential } } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { _clusterName = GetClusterConnection(ResourceGroupName, ClusterName); var output = GetJobOutput(); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs index ebe23b8ae162..1046841aaa2f 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs @@ -104,7 +104,7 @@ public InvokeHiveCommand() this.hiveJobDefinitionCommand = new NewAzureHDInsightHiveJobDefinitionCommand(); } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { //get variables from session var clusterConnection = SessionState.PSVariable.Get(UseAzureHDInsightClusterCommand.ClusterEndpoint).Value.ToString(); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightHiveJobDefinitionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightHiveJobDefinitionCommand.cs index 9b27ef7ce8cf..035699ec8b9c 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightHiveJobDefinitionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightHiveJobDefinitionCommand.cs @@ -85,7 +85,7 @@ public NewAzureHDInsightHiveJobDefinitionCommand() job = new AzureHDInsightHiveJobDefinition(); } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var hivejob = GetHiveJob(); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightMapReduceJobDefinitionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightMapReduceJobDefinitionCommand.cs index efa9ed0eef57..f051a04e8b16 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightMapReduceJobDefinitionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightMapReduceJobDefinitionCommand.cs @@ -82,7 +82,7 @@ public NewAzureHDInsightMapReduceJobDefinitionCommand() job = new AzureHDInsightMapReduceJobDefinition(); } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { foreach (var arg in Arguments) { diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightPigJobDefinitionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightPigJobDefinitionCommand.cs index 16e0303903fc..3d3c76a42a91 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightPigJobDefinitionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightPigJobDefinitionCommand.cs @@ -65,7 +65,7 @@ public NewAzureHDInsightPigJobDefinitionCommand() job = new AzureHDInsightPigJobDefinition(); } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { foreach (var arg in Arguments) { diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs index 1a04745f5778..3cd5d74b9524 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/NewAzureHDInsightStreamingMapReduceJobDefinitionCommand.cs @@ -93,7 +93,7 @@ public NewAzureHDInsightStreamingMapReduceJobDefinitionCommand() job = new AzureHDInsightStreamingMapReduceJobDefinition(); } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { foreach (var arg in Arguments) { diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs index 4c921a54966a..e20b75416c51 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StartAzureHDInsightJobCommand.cs @@ -73,7 +73,7 @@ public PSCredential ClusterCredential #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { WriteObject(Execute()); } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StopAzureHDInsightJobCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StopAzureHDInsightJobCommand.cs index ca955ee33bab..3c40a6e6b17d 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StopAzureHDInsightJobCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/StopAzureHDInsightJobCommand.cs @@ -69,7 +69,7 @@ public PSCredential ClusterCredential #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { _clusterName = GetClusterConnection(ResourceGroupName, ClusterName); HDInsightJobClient.StopJob(JobId); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/UseAzureHDInsightClusterCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/UseAzureHDInsightClusterCommand.cs index 87ddc9cbfa4f..215b41ce7bcd 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/UseAzureHDInsightClusterCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/UseAzureHDInsightClusterCommand.cs @@ -68,7 +68,7 @@ public PSCredential ClusterCredential #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var httpEndpoint = GetClusterConnection(ResourceGroupName, ClusterName); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/WaitAzureHDInsightJobCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/WaitAzureHDInsightJobCommand.cs index 81e18f06167d..d0711e016734 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/WaitAzureHDInsightJobCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/WaitAzureHDInsightJobCommand.cs @@ -69,7 +69,7 @@ public PSCredential ClusterCredential #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var jobDetails = WaitJob(); WriteObject(jobDetails); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs index 7244873e1969..cb6a789dd45f 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs @@ -96,7 +96,7 @@ public AddAzureHDInsightConfigValuesCommand() Hdfs = new Hashtable(); } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { _configurations = Config.Configurations ?? new Dictionary(); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightMetastoreCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightMetastoreCommand.cs index 3e2889b5a05a..31b5e50a062a 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightMetastoreCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightMetastoreCommand.cs @@ -74,7 +74,7 @@ public AddAzureHDInsightMetastoreCommand() _metastore = new AzureHDInsightMetastore(); } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { switch (MetastoreType) { diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightScriptActionCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightScriptActionCommand.cs index 74b630d53c0f..b87f62b6bb54 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightScriptActionCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightScriptActionCommand.cs @@ -75,7 +75,7 @@ public AddAzureHDInsightScriptActionCommand() _action = new ScriptAction(); } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { List actions; diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightStorageCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightStorageCommand.cs index ae58f40c54e3..d227d03dbd61 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightStorageCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightStorageCommand.cs @@ -44,7 +44,7 @@ public class AddAzureHDInsightStorageCommand : HDInsightCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { Config.AdditionalStorageAccounts.Add(StorageAccountName, StorageAccountKey); WriteObject(Config); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GetAzureHDInsightClusterCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GetAzureHDInsightClusterCommand.cs index 0c96dbf50985..853f577fea62 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GetAzureHDInsightClusterCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GetAzureHDInsightClusterCommand.cs @@ -41,7 +41,7 @@ public class GetAzureHDInsightCommand : HDInsightCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var result = HDInsightManagementClient.GetCluster(ResourceGroupName, ClusterName); var output = result.Select(cluster => new AzureHDInsightCluster(cluster)).ToList(); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs index a19b013c1f91..77c8b11e1e7e 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs @@ -35,7 +35,7 @@ public class GetAzureHDInsightPropertiesCommand : HDInsightCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var result = HDInsightManagementClient.GetCapabilities(Location); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GrantAzureHDInsightHttpServicesAccessCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GrantAzureHDInsightHttpServicesAccessCommand.cs index 38d0ddf23bee..31859393c00e 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GrantAzureHDInsightHttpServicesAccessCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GrantAzureHDInsightHttpServicesAccessCommand.cs @@ -47,7 +47,7 @@ public class GrantAzureHDInsightHttpServicesAccessCommand : HDInsightCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var httpParams = new HttpSettingsParameters { diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GrantAzureHDInsightRdpServicesAccessCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GrantAzureHDInsightRdpServicesAccessCommand.cs index 6d14f237bd53..a3d7b1e68ea6 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GrantAzureHDInsightRdpServicesAccessCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/GrantAzureHDInsightRdpServicesAccessCommand.cs @@ -53,7 +53,7 @@ public class GrantAzureHDInsightRdpServicesAccessCommand : HDInsightCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var rdpParams = new RDPSettingsParameters { diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs index e2523216b0b1..89fe758f751e 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs @@ -248,7 +248,7 @@ public NewAzureHDInsightClusterCommand() ScriptActions = new Dictionary>(); } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { parameters.UserName = HttpCredential.UserName; parameters.Password = HttpCredential.Password.ConvertToString(); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs index 05d19a6349bb..73575f82f019 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs @@ -92,7 +92,7 @@ public NewAzureHDInsightClusterConfigCommand() _config = new AzureHDInsightConfig(); } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { WriteObject(_config); } diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RemoveAzureHDInsightClusterCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RemoveAzureHDInsightClusterCommand.cs index de3adacef376..c609a1baba57 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RemoveAzureHDInsightClusterCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RemoveAzureHDInsightClusterCommand.cs @@ -41,7 +41,7 @@ public class RemoveAzureHDInsightCommand : HDInsightCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var result = HDInsightManagementClient.DeleteCluster(ResourceGroupName, ClusterName); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RevokeAzureHDInsightHttpServicesAccessCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RevokeAzureHDInsightHttpServicesAccessCommand.cs index 47f32d64900a..94376ccdc474 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RevokeAzureHDInsightHttpServicesAccessCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RevokeAzureHDInsightHttpServicesAccessCommand.cs @@ -41,7 +41,7 @@ public class RevokeAzureHDInsightHttpServicesAccessCommand : HDInsightCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var httpParams = new HttpSettingsParameters { diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RevokeAzureHDInsightRdpServicesAccessCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RevokeAzureHDInsightRdpServicesAccessCommand.cs index 08f67b18d9c4..0cfe39bccc5d 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RevokeAzureHDInsightRdpServicesAccessCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/RevokeAzureHDInsightRdpServicesAccessCommand.cs @@ -41,7 +41,7 @@ public class RevokeAzureHDInsightRdpServicesAccessCommand : HDInsightCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var rdpParams = new RDPSettingsParameters { diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/SetAzureHDInsightClusterSizeCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/SetAzureHDInsightClusterSizeCommand.cs index d464f678a257..decb6f188276 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/SetAzureHDInsightClusterSizeCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/SetAzureHDInsightClusterSizeCommand.cs @@ -59,7 +59,7 @@ public SetAzureHDInsightClusterSizeCommand() resizeParams = new ClusterResizeParameters(); } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { HDInsightManagementClient.ResizeCluster(ResourceGroupName, ClusterName, resizeParams); diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/SetAzureHDInsightDefaultStorageCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/SetAzureHDInsightDefaultStorageCommand.cs index 31696465fc00..f6fd05005f05 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/SetAzureHDInsightDefaultStorageCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/ManagementCommands/SetAzureHDInsightDefaultStorageCommand.cs @@ -44,7 +44,7 @@ public class SetAzureHDInsightDefaultStorageCommand : HDInsightCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { Config.DefaultStorageAccountName = StorageAccountName; Config.DefaultStorageAccountKey = StorageAccountKey; 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 13ad99dfea85..ceb692e1cdf7 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj +++ b/src/ResourceManager/Insights/Commands.Insights.Test/Commands.Insights.Test.csproj @@ -107,9 +107,6 @@ ..\..\..\packages\Microsoft.WindowsAzure.ConfigurationManager.1.8.0.0\lib\net35-full\Microsoft.WindowsAzure.Configuration.dll - - ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.0.0\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll - ..\..\..\packages\WindowsAzure.Storage.4.0.0\lib\net40\Microsoft.WindowsAzure.Storage.dll @@ -117,8 +114,9 @@ False ..\..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll - - ..\..\..\packages\Newtonsoft.Json.5.0.6\lib\net45\Newtonsoft.Json.dll + + False + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll @@ -171,14 +169,14 @@ + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + {c1bda476-a5cc-4394-914d-48b0ec31a710} Commands.ScenarioTests.Common - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - {DEA446A1-84E2-46CC-B780-EB4AFDE2460E} Commands.Insights diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/AlertsTests.cs b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/AlertsTests.cs index cbfade13a762..a452cfca93cc 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/AlertsTests.cs +++ b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/AlertsTests.cs @@ -13,11 +13,12 @@ // ---------------------------------------------------------------------------------- using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Xunit; namespace Microsoft.Azure.Commands.Insights.Test.ScenarioTests { - public class AlertsTests + public class AlertsTests : RMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/AutoscaleTests.cs b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/AutoscaleTests.cs index 86e24a1dc4e1..39cdb670e006 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/AutoscaleTests.cs +++ b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/AutoscaleTests.cs @@ -13,11 +13,12 @@ // ---------------------------------------------------------------------------------- using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Xunit; namespace Microsoft.Azure.Commands.Insights.Test.ScenarioTests { - public class AutoscaleTests + public class AutoscaleTests : RMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/EventsTests.cs b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/EventsTests.cs index 64f47f8de062..3e4e3b864c1f 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/EventsTests.cs +++ b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/EventsTests.cs @@ -13,11 +13,12 @@ // ---------------------------------------------------------------------------------- using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Xunit; namespace Microsoft.Azure.Commands.Insights.Test.ScenarioTests { - public class EventsTests + public class EventsTests : RMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/MetricsTests.cs b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/MetricsTests.cs index eee6547fac76..ec3cdc3513b3 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/MetricsTests.cs +++ b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/MetricsTests.cs @@ -13,11 +13,12 @@ // ---------------------------------------------------------------------------------- using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Xunit; namespace Microsoft.Azure.Commands.Insights.Test.ScenarioTests { - public class MetricsTests + public class MetricsTests : RMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/TestsController.cs b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/TestsController.cs index a61a898a5b84..7949f278d8b8 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/TestsController.cs +++ b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/TestsController.cs @@ -19,10 +19,11 @@ using Microsoft.Azure.Test; using System; using System.Linq; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; namespace Microsoft.Azure.Commands.Insights.Test.ScenarioTests { - public sealed class TestsController + public sealed class TestsController : RMTestBase { private CSMTestEnvironmentFactory csmTestFactory; private EnvironmentSetupHelper helper; diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.cs b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.cs index 90f3689ee01a..7d720bc2ba92 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.cs +++ b/src/ResourceManager/Insights/Commands.Insights.Test/ScenarioTests/UsageMetricsTests.cs @@ -13,11 +13,12 @@ // ---------------------------------------------------------------------------------- using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Xunit; namespace Microsoft.Azure.Commands.Insights.Test.ScenarioTests { - public class UsageMetricsTests + public class UsageMetricsTests : RMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Insights/Commands.Insights.Test/packages.config b/src/ResourceManager/Insights/Commands.Insights.Test/packages.config index f94ca66683f0..49ed6d2f13f9 100644 --- a/src/ResourceManager/Insights/Commands.Insights.Test/packages.config +++ b/src/ResourceManager/Insights/Commands.Insights.Test/packages.config @@ -20,7 +20,7 @@ - + diff --git a/src/ResourceManager/Insights/Commands.Insights/Alerts/AddAlertRuleCommandBase.cs b/src/ResourceManager/Insights/Commands.Insights/Alerts/AddAlertRuleCommandBase.cs index 006e89124c6d..fbecf719f2b1 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Alerts/AddAlertRuleCommandBase.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Alerts/AddAlertRuleCommandBase.cs @@ -114,7 +114,7 @@ public abstract class AddAlertRuleCommandBase : ManagementCmdletBase /// /// Execute the cmdlet /// - protected override void ExecuteCmdletInternal() + protected override void ProcessRecordInternal() { RuleCreateOrUpdateParameters parameters = this.CreateSdkCallParameters(); var result = this.InsightsManagementClient.AlertOperations.CreateOrUpdateRuleAsync(resourceGroupName: this.ResourceGroup, parameters: parameters).Result; diff --git a/src/ResourceManager/Insights/Commands.Insights/Alerts/GetAlertRuleCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Alerts/GetAlertRuleCommand.cs index db4a361de769..abce4914e73d 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Alerts/GetAlertRuleCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Alerts/GetAlertRuleCommand.cs @@ -69,7 +69,7 @@ public class GetAlertRuleCommand : ManagementCmdletBase /// /// Execute the cmdlet /// - protected override void ExecuteCmdletInternal() + protected override void ProcessRecordInternal() { if (string.IsNullOrWhiteSpace(this.Name)) { diff --git a/src/ResourceManager/Insights/Commands.Insights/Alerts/RemoveAlertRuleCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Alerts/RemoveAlertRuleCommand.cs index b866f4e01374..4840c9925e85 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Alerts/RemoveAlertRuleCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Alerts/RemoveAlertRuleCommand.cs @@ -48,7 +48,7 @@ public class RemoveAlertRuleCommand : ManagementCmdletBase /// /// Execute the cmdlet /// - protected override void ExecuteCmdletInternal() + protected override void ProcessRecordInternal() { AzureOperationResponse result = this.InsightsManagementClient.AlertOperations.DeleteRuleAsync(resourceGroupName: this.ResourceGroup, ruleName: this.Name).Result; WriteObject(result); diff --git a/src/ResourceManager/Insights/Commands.Insights/Autoscale/AddAutoscaleSettingCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Autoscale/AddAutoscaleSettingCommand.cs index 24904a3eeeec..6d1fdaf7cbcb 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Autoscale/AddAutoscaleSettingCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Autoscale/AddAutoscaleSettingCommand.cs @@ -92,7 +92,7 @@ public class AddAutoscaleSettingCommand : ManagementCmdletBase /// /// Execute the cmdlet /// - protected override void ExecuteCmdletInternal() + protected override void ProcessRecordInternal() { AutoscaleSettingCreateOrUpdateParameters parameters = this.CreateSdkCallParameters(); var result = this.InsightsManagementClient.AutoscaleOperations.CreateOrUpdateSettingAsync(resourceGroupName: this.ResourceGroup, autoscaleSettingName: this.Name, parameters: parameters).Result; diff --git a/src/ResourceManager/Insights/Commands.Insights/Autoscale/GetAutoscaleSettingCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Autoscale/GetAutoscaleSettingCommand.cs index ed03ea082697..ba2ed6557f8b 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Autoscale/GetAutoscaleSettingCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Autoscale/GetAutoscaleSettingCommand.cs @@ -57,7 +57,7 @@ public class GetAutoscaleSettingCommand : ManagementCmdletBase /// /// Execute the cmdlet /// - protected override void ExecuteCmdletInternal() + protected override void ProcessRecordInternal() { if (string.IsNullOrWhiteSpace(this.Name)) { diff --git a/src/ResourceManager/Insights/Commands.Insights/Autoscale/NewAutoscaleProfileCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Autoscale/NewAutoscaleProfileCommand.cs index 406110dce4f8..54b35ab6fdb5 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Autoscale/NewAutoscaleProfileCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Autoscale/NewAutoscaleProfileCommand.cs @@ -15,6 +15,7 @@ using System; using System.Collections.Generic; using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.Azure.Management.Insights.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; @@ -24,7 +25,7 @@ namespace Microsoft.Azure.Commands.Insights.Autoscale /// Create an autoscale profile /// [Cmdlet(VerbsCommon.New, "AutoscaleProfile"), OutputType(typeof(AutoscaleProfile))] - public class NewAutoscaleProfileCommand : AzureSMCmdlet + public class NewAutoscaleProfileCommand : AzureRMCmdlet { private const string AddAutoscaleProfileNoScheduleParamGroup = "Parameters for AddAutoscale profile cmdlet without scheduled times"; private const string AddAutoscaleProfileFixDateParamGroup = "Parameters for AddAutoscale profile cmdlet using fix date scheduling"; @@ -134,7 +135,7 @@ public class NewAutoscaleProfileCommand : AzureSMCmdlet /// /// Execute the cmdlet /// - public override void ExecuteCmdlet() + protected override void ProcessRecord() { AutoscaleProfile profile = this.CreateSettingProfile(); WriteObject(profile); @@ -196,5 +197,13 @@ private RecurrentSchedule CreateRecurrentSchedule() TimeZone = this.ScheduleTimeZone, }; } + + /// + /// Added for tests only, should be removed in the future. + /// + public void ExecuteCmdlet() + { + ProcessRecord(); + } } } diff --git a/src/ResourceManager/Insights/Commands.Insights/Autoscale/NewAutoscaleRuleCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Autoscale/NewAutoscaleRuleCommand.cs index b82644506563..235d91010aff 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Autoscale/NewAutoscaleRuleCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Autoscale/NewAutoscaleRuleCommand.cs @@ -17,6 +17,7 @@ using System.Globalization; using System.Management.Automation; using Microsoft.Azure.Commands.Insights.Properties; +using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.Azure.Management.Insights.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; @@ -26,7 +27,7 @@ namespace Microsoft.Azure.Commands.Insights.Autoscale /// Create an Autoscale rule /// [Cmdlet(VerbsCommon.New, "AutoscaleRule"), OutputType(typeof(ScaleRule))] - public class NewAutoscaleRuleCommand : AzureSMCmdlet + public class NewAutoscaleRuleCommand : AzureRMCmdlet { private readonly TimeSpan MinimumTimeWindow = TimeSpan.FromMinutes(5); private readonly TimeSpan MinimumTimeGrain = TimeSpan.FromMinutes(1); @@ -113,7 +114,7 @@ public class NewAutoscaleRuleCommand : AzureSMCmdlet /// /// Execute the cmdlet /// - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ScaleRule rule = this.CreateSettingRule(); WriteObject(rule); @@ -161,5 +162,13 @@ public ScaleRule CreateSettingRule() ScaleAction = action, }; } + + /// + /// Added for tests only, should be removed in the future. + /// + public void ExecuteCmdlet() + { + ProcessRecord(); + } } } diff --git a/src/ResourceManager/Insights/Commands.Insights/Autoscale/RemoveAutoscaleSettingCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Autoscale/RemoveAutoscaleSettingCommand.cs index 22b66d73aeb5..29b948f9a52a 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Autoscale/RemoveAutoscaleSettingCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Autoscale/RemoveAutoscaleSettingCommand.cs @@ -48,7 +48,7 @@ public class RemoveAutoscaleSettingCommand : ManagementCmdletBase /// /// Execute the cmdlet /// - protected override void ExecuteCmdletInternal() + protected override void ProcessRecordInternal() { AzureOperationResponse result = this.InsightsManagementClient.AutoscaleOperations.DeleteSettingAsync(resourceGroupName: this.ResourceGroup, autoscaleSettingName: this.Name).Result; WriteObject(result); diff --git a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj index 29c9263729ea..bc2be60e02b8 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj +++ b/src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj @@ -194,12 +194,6 @@ Designer - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - - PreserveNewest @@ -220,6 +214,12 @@ Designer + + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + + diff --git a/src/ResourceManager/Insights/Commands.Insights/EventCmdletBase.cs b/src/ResourceManager/Insights/Commands.Insights/EventCmdletBase.cs index 5d382f215414..9d1c9a77a905 100644 --- a/src/ResourceManager/Insights/Commands.Insights/EventCmdletBase.cs +++ b/src/ResourceManager/Insights/Commands.Insights/EventCmdletBase.cs @@ -185,7 +185,7 @@ protected virtual bool KeepTheRecord(EventData record) /// /// Execute the cmdlet /// - protected override void ExecuteCmdletInternal() + protected override void ProcessRecordInternal() { string queryFilter = this.ProcessParameters(); diff --git a/src/ResourceManager/Insights/Commands.Insights/InsightsClientCmdletBase.cs b/src/ResourceManager/Insights/Commands.Insights/InsightsClientCmdletBase.cs index 2109b7a9c0c6..4a9fd60798b8 100644 --- a/src/ResourceManager/Insights/Commands.Insights/InsightsClientCmdletBase.cs +++ b/src/ResourceManager/Insights/Commands.Insights/InsightsClientCmdletBase.cs @@ -49,23 +49,11 @@ public IInsightsClient InsightsClient set { this.insightsClient = value; } } - /// - /// Dispose method - /// The implementation of IDispose follows the recommeded pattern - /// - public void Dispose() - { - this.Dispose(true); - - // The class is not sealed, so this is here in case a derived class is created - GC.SuppressFinalize(this); - } - /// /// Dispose the resources /// /// Indicates whether the managed resources should be disposed or not - protected virtual void Dispose(bool disposing) + protected override void Dispose(bool disposing) { if (!this.disposed) { @@ -77,6 +65,7 @@ protected virtual void Dispose(bool disposing) this.disposed = true; } + base.Dispose(disposing); } #endregion diff --git a/src/ResourceManager/Insights/Commands.Insights/InsightsCmdletBase.cs b/src/ResourceManager/Insights/Commands.Insights/InsightsCmdletBase.cs index c13b29bb703e..6ae60d4000b8 100644 --- a/src/ResourceManager/Insights/Commands.Insights/InsightsCmdletBase.cs +++ b/src/ResourceManager/Insights/Commands.Insights/InsightsCmdletBase.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using System; +using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.Insights @@ -20,26 +21,34 @@ namespace Microsoft.Azure.Commands.Insights /// /// Base class for the Azure Insights SDK Cmdlets /// - public abstract class InsightsCmdletBase : AzureSMCmdlet + public abstract class InsightsCmdletBase : AzureRMCmdlet { /// /// Executes the Cmdlet. This is a callback function to simplify the execption handling /// - protected abstract void ExecuteCmdletInternal(); + protected abstract void ProcessRecordInternal(); /// /// Execute the cmdlet /// - public override void ExecuteCmdlet() + protected override void ProcessRecord() { try { - this.ExecuteCmdletInternal(); + this.ProcessRecordInternal(); } catch (AggregateException ex) { throw ex.Flatten().InnerException; } } + + /// + /// Added for tests only, should be removed in the future. + /// + public void ExecuteCmdlet() + { + ProcessRecord(); + } } } diff --git a/src/ResourceManager/Insights/Commands.Insights/ManagementCmdletBase.cs b/src/ResourceManager/Insights/Commands.Insights/ManagementCmdletBase.cs index b12696abdfa4..df59d9f9a342 100644 --- a/src/ResourceManager/Insights/Commands.Insights/ManagementCmdletBase.cs +++ b/src/ResourceManager/Insights/Commands.Insights/ManagementCmdletBase.cs @@ -48,23 +48,11 @@ public IInsightsManagementClient InsightsManagementClient set { this.insightsManagementClient = value; } } - /// - /// Dispose method - /// The implementation of IDispose follows the recommeded pattern - /// - public void Dispose() - { - this.Dispose(true); - - // The class is not sealed, so this is here in case a derived class is created - GC.SuppressFinalize(this); - } - /// /// Dispose the resources /// /// Indicates whether the managed resources should be disposed or not - protected virtual void Dispose(bool disposing) + protected override void Dispose(bool disposing) { if (!this.disposed) { @@ -76,6 +64,7 @@ protected virtual void Dispose(bool disposing) this.disposed = true; } + base.Dispose(disposing); } #endregion diff --git a/src/ResourceManager/Insights/Commands.Insights/Metrics/FormatMetricsAsTableCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Metrics/FormatMetricsAsTableCommand.cs index de49df41c6f5..f5cf62555b52 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Metrics/FormatMetricsAsTableCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Metrics/FormatMetricsAsTableCommand.cs @@ -16,6 +16,7 @@ using System.Linq; using System.Management.Automation; using Microsoft.Azure.Commands.Insights.OutputClasses; +using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.Azure.Insights.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; @@ -25,7 +26,7 @@ namespace Microsoft.Azure.Commands.Insights.Metrics /// Get the list of metric definition for a resource. /// [Cmdlet(VerbsCommon.Format, "MetricsAsTable"), OutputType(typeof(PSMetricTabularResult[]))] - public class FormatMetricsAsTableCommand : AzureSMCmdlet + public class FormatMetricsAsTableCommand : AzureRMCmdlet { /// /// Gets or sets the array of metrics of the cmdlet @@ -74,7 +75,7 @@ public PSMetricTabularResult[] ProcessParameter() /// /// Execute the cmdlet /// - public override void ExecuteCmdlet() + protected override void ProcessRecord() { WriteObject(this.ProcessParameter()); } diff --git a/src/ResourceManager/Insights/Commands.Insights/Metrics/GetMetricDefinitionsCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Metrics/GetMetricDefinitionsCommand.cs index 7f979ceecd0a..e93d5eeb94f0 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Metrics/GetMetricDefinitionsCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Metrics/GetMetricDefinitionsCommand.cs @@ -69,7 +69,7 @@ protected string ProcessParameters() /// /// Execute the cmdlet /// - protected override void ExecuteCmdletInternal() + protected override void ProcessRecordInternal() { string queryFilter = this.ProcessParameters(); bool fullDetails = this.DetailedOutput.IsPresent; diff --git a/src/ResourceManager/Insights/Commands.Insights/Metrics/GetMetricsCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Metrics/GetMetricsCommand.cs index 3759055d9f6e..ffe2df550350 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Metrics/GetMetricsCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Metrics/GetMetricsCommand.cs @@ -125,7 +125,7 @@ protected string ProcessParameters() /// /// Execute the cmdlet /// - protected override void ExecuteCmdletInternal() + protected override void ProcessRecordInternal() { string queryFilter = this.ProcessParameters(); bool fullDetails = this.DetailedOutput.IsPresent; diff --git a/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs b/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs index b39cc7590b51..5deb854d53d7 100644 --- a/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/UsageMetrics/GetUsageMetricsCommand.cs @@ -119,7 +119,7 @@ protected string ProcessParameters() /// /// Execute the cmdlet /// - protected override void ExecuteCmdletInternal() + protected override void ProcessRecordInternal() { string queryFilter = this.ProcessParameters(); string apiVersion = this.ApiVersion ?? DefaultApiVersion; 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 d7d11000950d..64ab274be849 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Commands.KeyVault.Test.csproj @@ -181,10 +181,29 @@ PreserveNewest + + + + + + ScenarioTests\KeyVaultManagementTests.ps1 Always + + + + + + + + + + + + + Always @@ -268,9 +287,9 @@ - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common {c1bda476-a5cc-4394-914d-48b0ec31a710} @@ -291,6 +310,9 @@ Resource.Designer.cs + + + diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultEnvSetupHelper.cs b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultEnvSetupHelper.cs index b25bd91b4895..1a5f80d83980 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultEnvSetupHelper.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultEnvSetupHelper.cs @@ -27,7 +27,7 @@ using Microsoft.Azure.Management.KeyVault; using Microsoft.Azure.Common.Authentication.Models; using System.Collections.Generic; - +using Microsoft.Azure.Commands.ResourceManager.Common; namespace Microsoft.Azure.Commands.KeyVault.Test { @@ -49,8 +49,8 @@ public void SetupEnvironment() var testSubscription = new AzureSubscription() { Id = new Guid(csmEnvironment.SubscriptionId), - Name = ProfileClient.Profile.DefaultSubscription.Name, - Environment = ProfileClient.Profile.DefaultSubscription.Environment, + Name = AzureRMCmdlet.Profile.DefaultContext.Subscription.Name, + Environment = AzureRMCmdlet.Profile.DefaultContext.Environment.Name, Account = user, Properties = new Dictionary { @@ -73,12 +73,7 @@ public void SetupEnvironment() } }; - ProfileClient.Profile.Accounts.Remove(ProfileClient.Profile.DefaultSubscription.Account); - ProfileClient.Profile.Subscriptions[testSubscription.Id] = testSubscription; - ProfileClient.Profile.Accounts[testAccount.Id] = testAccount; - ProfileClient.SetSubscriptionAsDefault(testSubscription.Name, testSubscription.Account); - - ProfileClient.Profile.Save(); + AzureRMCmdlet.Profile.DefaultContext = new AzureContext(testSubscription, testAccount, AzureRMCmdlet.Profile.DefaultContext.Environment, new AzureTenant { Id = new Guid(tenantId) }); } } diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementController.cs b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementController.cs index aa0705803417..4901424f5ea9 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementController.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultManagementController.cs @@ -25,6 +25,8 @@ using Microsoft.Azure.Gallery; using Microsoft.Azure.Graph.RBAC; using Microsoft.Azure.Management.KeyVault; +using Microsoft.Azure.Commands.ResourceManager.Common; +using Microsoft.Azure.Common.Authentication.Models; namespace Microsoft.Azure.Commands.KeyVault.Test { @@ -192,11 +194,14 @@ private GraphRbacManagementClient GetGraphClient() if (HttpMockServer.Variables.ContainsKey(TenantIdKey)) { tenantId = HttpMockServer.Variables[TenantIdKey]; + AzureRMCmdlet.Profile.DefaultContext.Tenant.Id = new Guid(tenantId); } if (HttpMockServer.Variables.ContainsKey(DomainKey)) { UserDomain = HttpMockServer.Variables[DomainKey]; + AzureRMCmdlet.Profile.DefaultContext.Tenant.Domain = UserDomain; } + } return TestBase.GetGraphServiceClient(this.csmTestFactory, tenantId); diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs index a6ee259ac59a..820ca4290c24 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/ScenarioTests/KeyVaultTestFixture.cs @@ -9,11 +9,12 @@ using Microsoft.Azure.Test; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.IdentityModel.Clients.ActiveDirectory; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Newtonsoft.Json; namespace Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests { - public class KeyVaultTestFixture : IDisposable + public class KeyVaultTestFixture : RMTestBase, IDisposable { public string tagName = "testtag", tagValue = "testvalue"; public string resourceGroupName, location, preCreatedVault; diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1 b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1 index d673baf74535..66d5e41b6e0d 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1 +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1 @@ -38,7 +38,7 @@ Param($rgName, $location, $tagName, $tagValue) Assert-AreEqual $false $actual.EnabledForDeployment # Default Access Policy - $upn = @(Get-AzureAccount)[0].Id + $upn = [Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet]::Profile.DefaultContext.Account.Id $objectId = @(Get-AzureADUser -Mail $upn)[0].Id $expectedPermsToKeys = @("get", "create", diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/UnitTests/KeyVaultUnitTestBase.cs b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/UnitTests/KeyVaultUnitTestBase.cs index e2e2faea1a6c..dc859f7290d9 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault.Test/UnitTests/KeyVaultUnitTestBase.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault.Test/UnitTests/KeyVaultUnitTestBase.cs @@ -15,10 +15,11 @@ using Microsoft.Azure.Commands.KeyVault.Models; using Moq; using System.Management.Automation; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; namespace Microsoft.Azure.Commands.KeyVault.Test { - public class KeyVaultUnitTestBase + public class KeyVaultUnitTestBase : RMTestBase { protected const string subscriptionId = "subscriptionid"; diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj index 8d73f5f63d89..f847704b6112 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj @@ -196,9 +196,9 @@ - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common {e1f5201d-6067-430e-b303-4e367652991b} diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/AddAzureKeyVaultKey.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/AddAzureKeyVaultKey.cs index e0d4dbb04997..254ef0f98653 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/AddAzureKeyVaultKey.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/AddAzureKeyVaultKey.cs @@ -180,7 +180,7 @@ public class AddAzureKeyVaultKey : KeyVaultCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { KeyBundle keyBundle; switch (ParameterSetName) diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/BackupAzureKeyVaultKey.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/BackupAzureKeyVaultKey.cs index 1d041e5970ea..29f82674b41d 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/BackupAzureKeyVaultKey.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/BackupAzureKeyVaultKey.cs @@ -62,7 +62,7 @@ public class BackupAzureKeyVaultKey : KeyVaultCmdletBase #endregion Input Parameter Definition - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (string.IsNullOrEmpty(OutputFile)) { diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVault.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVault.cs index 07b6f49f69f8..a62e8f508ac2 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVault.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVault.cs @@ -74,7 +74,7 @@ public class GetAzureKeyVault : KeyVaultManagementCmdletBase public Hashtable Tag { get; set; } #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { switch (ParameterSetName) { diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultKey.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultKey.cs index 1b66adcd0a13..2623d9579d52 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultKey.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultKey.cs @@ -95,7 +95,7 @@ public class GetAzureKeyVaultKey : KeyVaultCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { KeyBundle keyBundle; switch (ParameterSetName) diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultSecret.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultSecret.cs index d33ee09544ef..3a3911e875f1 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultSecret.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultSecret.cs @@ -93,7 +93,7 @@ public class GetAzureKeyVaultSecret : KeyVaultCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { Secret secret; switch (ParameterSetName) diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs index 7089f1e57188..00975993687e 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs @@ -84,7 +84,7 @@ public class NewAzureKeyVault : KeyVaultManagementCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (VaultExistsInCurrentSubscription(this.VaultName)) { diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVault.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVault.cs index 1cbed7c85c9b..0da31949863b 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVault.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVault.cs @@ -58,7 +58,7 @@ public class RemoveAzureKeyVault : KeyVaultManagementCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ResourceGroupName = string.IsNullOrWhiteSpace(ResourceGroupName) ? GetResourceGroupName(VaultName) : ResourceGroupName; if (string.IsNullOrWhiteSpace(ResourceGroupName)) diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs index dbef5b03f632..7f5ae69b6bb7 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultAccessPolicy.cs @@ -128,7 +128,7 @@ public class RemoveAzureKeyVaultAccessPolicy : KeyVaultManagementCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ResourceGroupName = string.IsNullOrWhiteSpace(ResourceGroupName) ? GetResourceGroupName(VaultName) : ResourceGroupName; diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultKey.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultKey.cs index e45e924ba64d..fd55f20be13b 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultKey.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultKey.cs @@ -62,7 +62,7 @@ public class RemoveAzureKeyVaultKey : KeyVaultCmdletBase public SwitchParameter PassThru { get; set; } #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { KeyBundle keyBundle = null; ConfirmAction( diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultSecret.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultSecret.cs index b576602a78a4..746f637e5f8a 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultSecret.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultSecret.cs @@ -63,7 +63,7 @@ public class RemoveAzureKeyVaultSecret : KeyVaultCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { Secret secret = null; ConfirmAction( diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RestoreAzureKeyVaultKey.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RestoreAzureKeyVaultKey.cs index d66bf52d0641..46f33f0cf538 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RestoreAzureKeyVaultKey.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RestoreAzureKeyVaultKey.cs @@ -50,7 +50,7 @@ public class RestoreAzureKeyVaultKey : KeyVaultCmdletBase #endregion Input Parameter Definitions - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var filePath = ResolvePath(InputFile); diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs index 0013027a75cf..82d7d9f2f659 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultAccessPolicy.cs @@ -156,7 +156,7 @@ public class SetAzureKeyVaultAccessPolicy : KeyVaultManagementCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ResourceGroupName = string.IsNullOrWhiteSpace(ResourceGroupName) ? GetResourceGroupName(VaultName) : ResourceGroupName; PSKeyVaultModels.PSVault vault = null; diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultKeyAttribute.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultKeyAttribute.cs index fd58177ae43b..f4fb3f25f1db 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultKeyAttribute.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultKeyAttribute.cs @@ -104,7 +104,7 @@ public class SetAzureKeyVaultKeyAttribute : KeyVaultCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var keyBundle = DataServiceClient.UpdateKey( VaultName, diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultSecret.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultSecret.cs index d8b1350c7827..fe9d92a37a24 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultSecret.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultSecret.cs @@ -96,7 +96,7 @@ public class SetAzureKeyVaultSecret : KeyVaultCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var secret = DataServiceClient.SetSecret( VaultName, diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultSecretAttribute.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultSecretAttribute.cs index 4128a8375e34..a7c77837308a 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultSecretAttribute.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultSecretAttribute.cs @@ -105,7 +105,7 @@ public class SetAzureKeyVaultSecretAttribute : KeyVaultCmdletBase #endregion - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var secret = DataServiceClient.UpdateSecret( VaultName, diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultCmdletBase.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultCmdletBase.cs index ccbbfa0d77a0..0f47e9a0fc73 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultCmdletBase.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultCmdletBase.cs @@ -17,15 +17,24 @@ using System; using System.IO; using System.Net.Http; +using Microsoft.Azure.Commands.ResourceManager.Common; namespace Microsoft.Azure.Commands.KeyVault.Models { - public class KeyVaultCmdletBase : AzureSMCmdlet + public class KeyVaultCmdletBase : AzureRMCmdlet { public KeyVaultCmdletBase() { } + /// + /// Shim method for backward compatibility. All cmdlets should implement ProcessRecord directly + /// + public void ExecuteCmdlet() + { + ProcessRecord(); + } + internal IKeyVaultDataServiceClient DataServiceClient { get @@ -34,7 +43,7 @@ internal IKeyVaultDataServiceClient DataServiceClient { this.dataServiceClient = new KeyVaultDataServiceClient( AzureSession.AuthenticationFactory, - Profile.DefaultContext, + DefaultContext, new HttpClient()); } diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultManagementCmdletBase.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultManagementCmdletBase.cs index 5228fd09f8c3..ef0bd894bcd6 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultManagementCmdletBase.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Models/KeyVaultManagementCmdletBase.cs @@ -16,6 +16,7 @@ using System.Collections; using System.Collections.Generic; using System.Linq; +using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.Azure.Commands.Resources.Models.ActiveDirectory; using Microsoft.Azure.Commands.Tags.Model; using Microsoft.Azure.Common.Authentication.Models; @@ -29,13 +30,21 @@ namespace Microsoft.Azure.Commands.KeyVault { - public class KeyVaultManagementCmdletBase : AzureSMCmdlet + public class KeyVaultManagementCmdletBase : AzureRMCmdlet { public KeyVaultManagementCmdletBase() { } + /// + /// Shim method for backward compatibility. All cmdlets should implement ProcessRecord directly + /// + public void ExecuteCmdlet() + { + ProcessRecord(); + } + private PSKeyVaultModels.VaultManagementClient _keyVaultManagementClient; public PSKeyVaultModels.VaultManagementClient KeyVaultManagementClient { @@ -43,7 +52,7 @@ public PSKeyVaultModels.VaultManagementClient KeyVaultManagementClient { if (this._keyVaultManagementClient == null) { - this._keyVaultManagementClient = new PSKeyVaultModels.VaultManagementClient(Profile.DefaultContext); + this._keyVaultManagementClient = new PSKeyVaultModels.VaultManagementClient(DefaultContext); } return this._keyVaultManagementClient; } @@ -59,7 +68,7 @@ public ActiveDirectoryClient ActiveDirectoryClient { if (_activeDirectoryClient == null) { - _activeDirectoryClient = new ActiveDirectoryClient(Profile.DefaultContext); + _activeDirectoryClient = new ActiveDirectoryClient(DefaultContext); } return this._activeDirectoryClient; } @@ -72,7 +81,7 @@ public PSResourceManagerModels.ResourcesClient ResourcesClient { get { - this._resourcesClient = new PSResourceManagerModels.ResourcesClient(this.Profile) + this._resourcesClient = new PSResourceManagerModels.ResourcesClient(DefaultContext) { VerboseLogger = WriteVerboseWithTimestamp, ErrorLogger = WriteErrorWithTimestamp, @@ -158,41 +167,34 @@ protected bool VaultExistsInCurrentSubscription(string name) protected Guid GetTenantId() { - var tenantIdStr = - Profile.DefaultContext.Subscription.GetPropertyAsArray(AzureSubscription.Property.Tenants).FirstOrDefault(); - var tenantIdGuid = Guid.Empty; - - if (string.IsNullOrWhiteSpace(tenantIdStr) || !Guid.TryParse(tenantIdStr, out tenantIdGuid)) + if (DefaultContext.Tenant == null || DefaultContext.Tenant.Id == Guid.Empty) { throw new InvalidOperationException(PSKeyVaultProperties.Resources.InvalidAzureEnvironment); } - return tenantIdGuid; + return DefaultContext.Tenant.Id; } protected Guid GetCurrentUsersObjectId() { - if (Profile.DefaultContext.Subscription == null) - throw new InvalidOperationException(Microsoft.WindowsAzure.Commands.Common.Properties.Resources.InvalidSelectedSubscription); + if (DefaultContext.Subscription == null) + throw new InvalidOperationException(PSKeyVaultProperties.Resources.InvalidSelectedSubscription); - if (string.IsNullOrWhiteSpace(Profile.DefaultContext.Subscription.Account)) + if (DefaultContext.Account == null) throw new InvalidOperationException(PSKeyVaultProperties.Resources.NoDefaultUserAccount); - var account = Profile.Accounts.Values.Where(a => a.Id == Profile.DefaultContext.Subscription.Account && a.Type == AzureAccount.AccountType.User).FirstOrDefault(); - if (account == null) - throw new InvalidOperationException(PSKeyVaultProperties.Resources.NoDefaultUserAccount); try { return GetObjectId( - upn: Profile.DefaultContext.Subscription.Account, + upn: DefaultContext.Account.Id, objectId: Guid.Empty, spn: null ); } catch { - throw new InvalidOperationException(string.Format(PSKeyVaultProperties.Resources.ADObjectNotFound, Profile.DefaultContext.Subscription.Account, ActiveDirectoryClient.GraphClient.TenantID)); + throw new InvalidOperationException(string.Format(PSKeyVaultProperties.Resources.ADObjectNotFound, DefaultContext.Subscription.Account, ActiveDirectoryClient.GraphClient.TenantID)); } } diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs index ceb259a19a5c..7b74d1e8c519 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -231,6 +231,15 @@ internal static string InvalidSecretUri { } } + /// + /// Looks up a localized string similar to No subscription is currently selected. Use Select-Subscription to activate a subscription.. + /// + internal static string InvalidSelectedSubscription { + get { + return ResourceManager.GetString("InvalidSelectedSubscription", resourceCulture); + } + } + /// /// Looks up a localized string similar to Your Azure credentials have not been set up or have expired, please run Add-AzureAccount to set up your Azure credentials.. /// diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx index ed4393a3f7b1..f352cd54f7d8 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx @@ -174,6 +174,9 @@ Invalid secret uri '{0}'. + + No subscription is currently selected. Use Select-Subscription to activate a subscription. + Your Azure credentials have not been set up or have expired, please run Add-AzureAccount to set up your Azure credentials. diff --git a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj index 091508e94ffe..8e1ba770dde1 100644 --- a/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj +++ b/src/ResourceManager/OperationalInsights/Commands.OperationalInsights/Commands.OperationalInsights.csproj @@ -128,10 +128,6 @@ {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common - - {c60342b1-47d3-4a0e-8081-9b97ce60b7af} - Commands.Profile - 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 c4366b4f40fb..914585c46caf 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj +++ b/src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj @@ -152,10 +152,6 @@ {c1bda476-a5cc-4394-914d-48b0ec31a710} Commands.ScenarioTests.Common - - {3b48a77b-5956-4a62-9081-92ba04b02b27} - Commands.Common.Test - {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common diff --git a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj index c1aec09dc9ad..aa33a6d79361 100644 --- a/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj +++ b/src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj @@ -142,16 +142,6 @@ Resources.resx - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - - - {c60342b1-47d3-4a0e-8081-9b97ce60b7af} - Commands.Profile - - Designer @@ -170,6 +160,12 @@ Resources.Designer.cs + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj index f94de985d30e..5943563d43e2 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj @@ -170,9 +170,9 @@ - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ApiVersionHelper.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ApiVersionHelper.cs index c11939ab314b..e8aef577c446 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ApiVersionHelper.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ApiVersionHelper.cs @@ -33,11 +33,11 @@ internal static class ApiVersionHelper /// /// Determines the API version. /// - /// The azure profile. + /// The azure profile. /// The resource Id. /// The cancellation token /// When specified, indicates if pre-release API versions should be considered. - internal static Task DetermineApiVersion(AzureSMProfile profile, string resourceId, CancellationToken cancellationToken, bool? pre = null) + internal static Task DetermineApiVersion(AzureContext context, string resourceId, CancellationToken cancellationToken, bool? pre = null) { var providerNamespace = ResourceIdUtility.GetExtensionProviderNamespace(resourceId) ?? ResourceIdUtility.GetProviderNamespace(resourceId); @@ -45,23 +45,23 @@ internal static Task DetermineApiVersion(AzureSMProfile profile, string var resourceType = ResourceIdUtility.GetExtensionResourceType(resourceId: resourceId, includeProviderNamespace: false) ?? ResourceIdUtility.GetResourceType(resourceId: resourceId, includeProviderNamespace: false); - return ApiVersionHelper.DetermineApiVersion(profile: profile, providerNamespace: providerNamespace, resourceType: resourceType, cancellationToken: cancellationToken, pre: pre); + return ApiVersionHelper.DetermineApiVersion(context: context, providerNamespace: providerNamespace, resourceType: resourceType, cancellationToken: cancellationToken, pre: pre); } /// /// Determines the API version. /// - /// The azure profile. + /// The azure profile. /// The provider namespace. /// The resource type. /// The cancellation token /// When specified, indicates if pre-release API versions should be considered. - internal static Task DetermineApiVersion(AzureSMProfile profile, string providerNamespace, string resourceType, CancellationToken cancellationToken, bool? pre = null) + internal static Task DetermineApiVersion(AzureContext context, string providerNamespace, string resourceType, CancellationToken cancellationToken, bool? pre = null) { var cacheKey = ApiVersionCache.GetCacheKey(providerNamespace: providerNamespace, resourceType: resourceType); var apiVersions = ApiVersionCache.Instance .AddOrGetExisting(cacheKey: cacheKey, getFreshData: () => ApiVersionHelper.GetApiVersionsForResourceType( - profile: profile, + context, providerNamespace: providerNamespace, resourceType: resourceType, cancellationToken: cancellationToken)); @@ -92,16 +92,15 @@ internal static Task DetermineApiVersion(AzureSMProfile profile, string /// /// Determines the list of api versions currently supported by the RP. /// - /// The azure profile. + /// The azure profile. /// The provider namespace. /// The resource type. /// The cancellation token. - private static string[] GetApiVersionsForResourceType(AzureSMProfile profile, string providerNamespace, string resourceType, CancellationToken cancellationToken) + private static string[] GetApiVersionsForResourceType(AzureContext context, string providerNamespace, string resourceType, CancellationToken cancellationToken) { - var resourceManagerClient = ResourceManagerClientHelper.GetResourceManagerClient(profile); + var resourceManagerClient = ResourceManagerClientHelper.GetResourceManagerClient(context); - var defaultSubscription = profile.DefaultSubscription ?? - profile.Subscriptions.CoalesceEnumerable().Select(kvp => kvp.Value).FirstOrDefault(); + var defaultSubscription = context.Subscription; var resourceCollectionId = defaultSubscription == null ? "/providers" diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ResourceManagerClientHelper.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ResourceManagerClientHelper.cs index f2b9c9a54381..7421348ad3b4 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ResourceManagerClientHelper.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Components/ResourceManagerClientHelper.cs @@ -28,10 +28,10 @@ internal static class ResourceManagerClientHelper /// /// Gets a new instance of the . /// - /// The azure profile. - internal static ResourceManagerRestRestClient GetResourceManagerClient(AzureSMProfile profile) + /// The azure profile. + internal static ResourceManagerRestRestClient GetResourceManagerClient(AzureContext context) { - var endpoint = profile.DefaultContext.Environment.GetEndpoint(AzureEnvironment.Endpoint.ResourceManager); + var endpoint = context.Environment.GetEndpoint(AzureEnvironment.Endpoint.ResourceManager); if (string.IsNullOrWhiteSpace(endpoint)) { @@ -45,7 +45,7 @@ internal static ResourceManagerRestRestClient GetResourceManagerClient(AzureSMPr endpointUri: endpointUri, httpClientHelper: HttpClientHelperFactory.Instance .CreateHttpClientHelper( - credentials: AzureSession.AuthenticationFactory.GetSubscriptionCloudCredentials(profile.DefaultContext), + credentials: AzureSession.AuthenticationFactory.GetSubscriptionCloudCredentials(context), headerValues: AzureSession.ClientFactory.UserAgents)); } } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs index d20fa064c4b9..380641cfbe71 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceCmdlet.cs @@ -245,7 +245,7 @@ protected override void OnEndProcessing() this.SubscriptionId = this.subscriptionIds.DistinctArray(); if (string.IsNullOrWhiteSpace(this.ResourceId) && !this.SubscriptionId.CoalesceEnumerable().Any() && !this.TenantLevel) { - this.SubscriptionId = this.Profile.DefaultContext.Subscription.Id.AsArray(); + this.SubscriptionId = DefaultContext.Subscription.Id.AsArray(); } this.RunCmdlet(); @@ -535,7 +535,7 @@ private async Task PopulatePermissions(PSObject resource) var apiVersion = await ApiVersionHelper .DetermineApiVersion( - profile: this.Profile, + DefaultContext, providerNamespace: "Microsoft.Authorization", resourceType: "permissions", cancellationToken: this.CancellationToken.Value, @@ -602,7 +602,7 @@ private async Task> GetPopulatedResource(Resource resou { var apiVersion = await ApiVersionHelper .DetermineApiVersion( - profile: this.Profile, + DefaultContext, resourceId: resource.Id, cancellationToken: this.CancellationToken.Value, pre: this.Pre) diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceGroupDeploymentOperationCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceGroupDeploymentOperationCmdlet.cs index 532d1cdf61c2..d40181e9cc04 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceGroupDeploymentOperationCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceGroupDeploymentOperationCmdlet.cs @@ -59,7 +59,7 @@ protected override void OnProcessRecord() if (this.SubscriptionId == null) { - this.SubscriptionId = this.Profile.DefaultContext.Subscription.Id; + this.SubscriptionId = DefaultContext.Subscription.Id; } this.RunCmdlet(); diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs index 5a4656b2209b..88cff885bc53 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/MoveAzureResourceCmdlet.cs @@ -105,7 +105,7 @@ private void RunCmdlet() .Concat(this.ResourceId) .DistinctArray(StringComparer.InvariantCultureIgnoreCase); - this.DestinationSubscriptionId = this.DestinationSubscriptionId ?? this.Profile.DefaultContext.Subscription.Id; + this.DestinationSubscriptionId = this.DestinationSubscriptionId ?? DefaultContext.Subscription.Id; var sourceResourceGroups = resourceIdsToUse .Select(resourceId => ResourceIdUtility.GetResourceGroupId(resourceId)) diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceLockManagementCmdletBase.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceLockManagementCmdletBase.cs index 8e16fd0d3c0d..e0a72dc6bf71 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceLockManagementCmdletBase.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceLockManagementCmdletBase.cs @@ -129,7 +129,7 @@ protected override void OnProcessRecord() this.SubscriptionId == null && !this.TenantLevel) { - this.SubscriptionId = this.Profile.DefaultContext.Subscription.Id; + this.SubscriptionId = DefaultContext.Subscription.Id; } base.OnProcessRecord(); diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs index ca946cf48148..4ea81ceda033 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManagerCmdletBase.cs @@ -25,6 +25,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.RestClients; + using Common; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Common.Authentication.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; @@ -33,7 +34,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// /// The base class for resource manager cmdlets. /// - public abstract class ResourceManagerCmdletBase : AzureSMCmdlet + public abstract class ResourceManagerCmdletBase : AzureRMCmdlet { /// /// The cancellation source. @@ -211,7 +212,7 @@ protected Task DetermineApiVersion(string resourceId, bool? pre = null) { return string.IsNullOrWhiteSpace(this.ApiVersion) ? ApiVersionHelper.DetermineApiVersion( - profile: this.Profile, + DefaultContext, resourceId: resourceId, cancellationToken: this.CancellationToken.Value, pre: pre ?? this.Pre) @@ -228,7 +229,7 @@ protected Task DetermineApiVersion(string providerNamespace, string reso { return string.IsNullOrWhiteSpace(this.ApiVersion) ? ApiVersionHelper.DetermineApiVersion( - profile: this.Profile, + DefaultContext, providerNamespace: providerNamespace, resourceType: resourceType, cancellationToken: this.CancellationToken.Value, @@ -241,7 +242,7 @@ protected Task DetermineApiVersion(string providerNamespace, string reso /// public ResourceManagerRestRestClient GetResourcesClient() { - var endpoint = this.Profile.DefaultContext.Environment.GetEndpoint(AzureEnvironment.Endpoint.ResourceManager); + var endpoint = DefaultContext.Environment.GetEndpoint(AzureEnvironment.Endpoint.ResourceManager); if (string.IsNullOrWhiteSpace(endpoint)) { @@ -255,7 +256,7 @@ public ResourceManagerRestRestClient GetResourcesClient() endpointUri: endpointUri, httpClientHelper: HttpClientHelperFactory.Instance .CreateHttpClientHelper( - credentials: AzureSession.AuthenticationFactory.GetSubscriptionCloudCredentials(this.Profile.DefaultContext), + credentials: AzureSession.AuthenticationFactory.GetSubscriptionCloudCredentials(DefaultContext), headerValues: AzureSession.ClientFactory.UserAgents)); } diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManipulationCmdletBase.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManipulationCmdletBase.cs index f2e472053d53..ec3fb94df4ca 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManipulationCmdletBase.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceManipulationCmdletBase.cs @@ -127,7 +127,7 @@ protected override void OnProcessRecord() { if (string.IsNullOrWhiteSpace(this.ResourceId) && !this.TenantLevel && this.SubscriptionId == null) { - this.SubscriptionId = this.Profile.DefaultContext.Subscription.Id; + this.SubscriptionId = DefaultContext.Subscription.Id; } base.OnProcessRecord(); diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceCmdlet.cs index cf03c5c66bea..b7faa3c117ea 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceCmdlet.cs @@ -120,7 +120,7 @@ protected override void OnProcessRecord() base.OnProcessRecord(); if (!this.TenantLevel) { - this.SubscriptionId = this.Profile.DefaultContext.Subscription.Id; + this.SubscriptionId = DefaultContext.Subscription.Id; } this.RunCmdlet(); diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs index d3958f4cb87d..eb968d56e31f 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs @@ -48,7 +48,7 @@ public sealed class TestAzureResoruceGroupCmdlet : ResourceManagerCmdletBase protected override void OnProcessRecord() { base.OnProcessRecord(); - this.SubscriptionId = this.Profile.DefaultContext.Subscription.Id; + this.SubscriptionId = DefaultContext.Subscription.Id; this.RunCmdlet(); } 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 aeb1e9bc9634..2730d6af81d8 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj @@ -224,14 +224,18 @@ + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + {c1bda476-a5cc-4394-914d-48b0ec31a710} Commands.ScenarioTests.Common - - {9577252e-0a6b-4d61-86e8-95f7f309a987} - Commands.DataFactories - {8058d403-06e3-4bed-8924-d166ce303961} Commands.ResourceManager.Cmdlets @@ -240,18 +244,6 @@ {e1f5201d-6067-430e-b303-4e367652991b} Commands.Resources - - {65c3a86a-716d-4e7d-ab67-1db00b3bf72d} - Commands.Common.Storage - - - {3b48a77b-5956-4a62-9081-92ba04b02b27} - Commands.Common.Test - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Features/GetAzureProviderFeatureCmdletTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/Features/GetAzureProviderFeatureCmdletTests.cs index e71bed93d7f4..e35e66ee59de 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Features/GetAzureProviderFeatureCmdletTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Features/GetAzureProviderFeatureCmdletTests.cs @@ -26,12 +26,13 @@ namespace Microsoft.Azure.Commands.Resources.Test using Microsoft.Azure.Management.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; + using WindowsAzure.Commands.Test.Utilities.Common; using Xunit; /// /// Tests the Azure Provider Feature cmdlets /// - public class GetAzureProviderFeatureCmdletTests + public class GetAzureProviderFeatureCmdletTests : RMTestBase { /// /// An instance of the cmdlet diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Features/RegisterProviderFeatureCmdletTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/Features/RegisterProviderFeatureCmdletTests.cs index fd8357fa3341..6f6f783cf981 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Features/RegisterProviderFeatureCmdletTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Features/RegisterProviderFeatureCmdletTests.cs @@ -25,12 +25,13 @@ namespace Microsoft.Azure.Commands.Resources.Test using Microsoft.Azure.Management.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; + using WindowsAzure.Commands.Test.Utilities.Common; using Xunit; /// /// Tests the Azure Provider Feature cmdlets /// - public class RegisterAzureProviderFeatureCmdletTests + public class RegisterAzureProviderFeatureCmdletTests : RMTestBase { /// /// An instance of the cmdlet diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/GalleryTemplatesClientTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/GalleryTemplatesClientTests.cs index 2b0c8a69bf83..46504497e430 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/GalleryTemplatesClientTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/GalleryTemplatesClientTests.cs @@ -21,17 +21,17 @@ using System.Threading; using System.Threading.Tasks; using Microsoft.Azure.Commands.Resources.Models; +using Microsoft.Azure.Common.OData; using Microsoft.Azure.Gallery; using Microsoft.Azure.Gallery.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; using Xunit; -using Microsoft.Azure.Common.OData; namespace Microsoft.Azure.Commands.Resources.Test.Models { - public class GalleryTemplatesClientTests : TestBase + public class GalleryTemplatesClientTests : RMTestBase { private GalleryTemplatesClient galleryTemplatesClient; diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/ResourceClientTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/ResourceClientTests.cs index 055910749b25..922c69bc2a84 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/ResourceClientTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/ResourceClientTests.cs @@ -22,27 +22,22 @@ using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; +using Hyak.Common; using Microsoft.Azure.Commands.Resources.Models; +using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Management.Authorization; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; -using Microsoft.WindowsAzure; -using Microsoft.WindowsAzure.Commands.Common.Storage; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; -using Microsoft.WindowsAzure.Commands.Utilities.Common; using Moq; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Xunit; -using Xunit.Extensions; -using System.Diagnostics; -using Microsoft.Azure.Common.Authentication; -using Hyak.Common; namespace Microsoft.Azure.Commands.Resources.Test.Models { - public class ResourceClientTests : TestBase + public class ResourceClientTests : RMTestBase { private Mock resourceManagementClientMock; @@ -56,14 +51,8 @@ public class ResourceClientTests : TestBase private Mock galleryTemplatesClientMock; - // TODO: http://vstfrd:8080/Azure/RD/_workitems#_a=edit&id=3247094 - //private Mock eventsClientMock; - private Mock deploymentOperationsMock; - // TODO: http://vstfrd:8080/Azure/RD/_workitems#_a=edit&id=3247094 - //private Mock eventDataOperationsMock; - private Mock providersMock; private Mock permissionOperationsMock; @@ -94,9 +83,6 @@ public class ResourceClientTests : TestBase private string serializedProperties; - // TODO: http://vstfrd:8080/Azure/RD/_workitems#_a=edit&id=3247094 - //private List sampleEvents; - private int ConfirmActionCounter = 0; private void ConfirmAction(bool force, string actionMessage, string processMessage, string target, Action action) diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Properties/AssemblyInfo.cs b/src/ResourceManager/Resources/Commands.Resources.Test/Properties/AssemblyInfo.cs index 69926a649e16..bc6fd46e04b2 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Properties/AssemblyInfo.cs @@ -14,7 +14,6 @@ using System.Reflection; using System.Runtime.InteropServices; -using Xunit; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information @@ -24,7 +23,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Microsoft.Azure.Commands.Resources.Test")] -[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] +[assembly: AssemblyCopyright("Copyright © Microsoft")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +31,5 @@ [assembly: Guid("28fe3fc0-6fdf-4f01-8a82-d7b4a834ddd2")] -[assembly: AssemblyVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyVersion)] -[assembly: AssemblyFileVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyFileVersion)] +[assembly: AssemblyVersion("1.0.0")] +[assembly: AssemblyFileVersion("1.0.0")] diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Providers/GetAzureProviderCmdletTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/Providers/GetAzureProviderCmdletTests.cs index 2410f5b30c1f..c514bc13dbee 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Providers/GetAzureProviderCmdletTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Providers/GetAzureProviderCmdletTests.cs @@ -25,12 +25,13 @@ namespace Microsoft.Azure.Commands.Resources.Test using Microsoft.Azure.Management.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; + using WindowsAzure.Commands.Test.Utilities.Common; using Xunit; /// /// Tests the AzureProvider cmdlets /// - public class GetAzureProviderCmdletTests + public class GetAzureProviderCmdletTests : RMTestBase { /// /// An instance of the cmdlet diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Providers/RegisterResourceProviderCmdletTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/Providers/RegisterResourceProviderCmdletTests.cs index 84c41c72b2e4..d86393abb416 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Providers/RegisterResourceProviderCmdletTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Providers/RegisterResourceProviderCmdletTests.cs @@ -25,12 +25,13 @@ namespace Microsoft.Azure.Commands.Resources.Test using Microsoft.Azure.Management.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; + using WindowsAzure.Commands.Test.Utilities.Common; using Xunit; /// /// Tests the AzureProvider cmdlets /// - public class RegisterAzureProviderCmdletTests + public class RegisterAzureProviderCmdletTests : RMTestBase { /// /// An instance of the cmdlet diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Providers/UnregisterResourceProviderCmdletTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/Providers/UnregisterResourceProviderCmdletTests.cs index a75a7fa498ff..f74eac13c553 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Providers/UnregisterResourceProviderCmdletTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Providers/UnregisterResourceProviderCmdletTests.cs @@ -25,12 +25,13 @@ namespace Microsoft.Azure.Commands.Resources.Test using Microsoft.Azure.Management.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; + using WindowsAzure.Commands.Test.Utilities.Common; using Xunit; /// /// Tests the AzureProvider cmdlets /// - public class UnregisterAzureProviderCmdletTests + public class UnregisterAzureProviderCmdletTests : RMTestBase { /// /// An instance of the cmdlet diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommandTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommandTests.cs index 09a5897219b7..2b1058ec4f62 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommandTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommandTests.cs @@ -17,12 +17,13 @@ using Microsoft.Azure.Commands.Resources.Models; using Microsoft.Azure.Management.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test { - public class GetAzureResourceGroupDeploymentCommandTests + public class GetAzureResourceGroupDeploymentCommandTests : RMTestBase { private GetAzureResourceGroupDeploymentCommand cmdlet; diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommandTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommandTests.cs index 1be3cade8a9c..15ff45fac23f 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommandTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommandTests.cs @@ -18,12 +18,13 @@ using Microsoft.Azure.Commands.Resources.Models; using Microsoft.Azure.Management.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test { - public class NewAzureResourceGroupDeploymentCommandTests + public class NewAzureResourceGroupDeploymentCommandTests : RMTestBase { private NewAzureResourceGroupDeploymentCommand cmdlet; diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureLocationCommandTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureLocationCommandTests.cs index 9fac8a33836b..c06395eb5630 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureLocationCommandTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureLocationCommandTests.cs @@ -16,12 +16,13 @@ using System.Management.Automation; using Microsoft.Azure.Commands.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test { - public class GetAzureLocationCommandTests + public class GetAzureLocationCommandTests : RMTestBase { private GetAzureLocationCommand cmdlet; diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupCommandTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupCommandTests.cs index fb5f78e5ae76..fdc58feea7f7 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupCommandTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupCommandTests.cs @@ -16,12 +16,13 @@ using System.Management.Automation; using Microsoft.Azure.Commands.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test { - public class GetAzureResourceGroupCommandTests + public class GetAzureResourceGroupCommandTests : RMTestBase { private GetAzureResourceGroupCommand cmdlet; diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupLogCommandTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupLogCommandTests.cs index 9428c416b372..f03606f1f0e3 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupLogCommandTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/GetAzureResourceGroupLogCommandTests.cs @@ -12,14 +12,9 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; -using System.Collections.Generic; -using System.Linq; using System.Management.Automation; using Microsoft.Azure.Commands.Resources.Models; -using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; -using Xunit; namespace Microsoft.Azure.Commands.Resources.Test { diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/NewAzureResourceGroupCommandTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/NewAzureResourceGroupCommandTests.cs index 5fc64dc3516f..8fafbeaadea5 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/NewAzureResourceGroupCommandTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/NewAzureResourceGroupCommandTests.cs @@ -17,12 +17,13 @@ using System.Management.Automation; using Microsoft.Azure.Commands.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test { - public class NewAzureResourceGroupCommandTests + public class NewAzureResourceGroupCommandTests : RMTestBase { private NewAzureResourceGroupCommand cmdlet; diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/RemoveAzureResourceGroupCommandTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/RemoveAzureResourceGroupCommandTests.cs index f1aefa5bdd29..de711c9046b6 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/RemoveAzureResourceGroupCommandTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/RemoveAzureResourceGroupCommandTests.cs @@ -15,12 +15,13 @@ using System.Management.Automation; using Microsoft.Azure.Commands.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test { - public class RemoveAzureResourceGroupCommandTests + public class RemoveAzureResourceGroupCommandTests : RMTestBase { private RemoveAzureResourceGroupCommand cmdlet; diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/SetAzureResourceGroupCommandTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/SetAzureResourceGroupCommandTests.cs index dab0762c2966..4eb5efaf8155 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/SetAzureResourceGroupCommandTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ResourceGroups/SetAzureResourceGroupCommandTests.cs @@ -18,12 +18,13 @@ using System.Management.Automation; using Microsoft.Azure.Commands.Resources.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test { - public class SetAzureResourceGroupCommandTests + public class SetAzureResourceGroupCommandTests : RMTestBase { private SetAzureResourceGroupCommand cmdlet; diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ActiveDirectoryTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ActiveDirectoryTests.cs index 33bebcd08c8a..41d89cc1ccd0 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ActiveDirectoryTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ActiveDirectoryTests.cs @@ -14,14 +14,14 @@ using Microsoft.Azure.Graph.RBAC; using Microsoft.Azure.Graph.RBAC.Models; -using Microsoft.WindowsAzure.Commands.ScenarioTest; using Microsoft.Azure.Test; -using System.Linq; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests { - public class ActiveDirectoryTests + public class ActiveDirectoryTests : RMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/AuthorizationTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/AuthorizationTests.cs index 28ee3d42bdfe..c8afc826b4d8 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/AuthorizationTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/AuthorizationTests.cs @@ -12,7 +12,6 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/MoveResourceTest.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/MoveResourceTest.cs index 55630db8a301..b5631bde6e95 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/MoveResourceTest.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/MoveResourceTest.cs @@ -14,7 +14,6 @@ namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests { - using Microsoft.WindowsAzure.Commands.ScenarioTest; using Xunit; public class MoveResourceTest diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.cs index b57653da05ea..6442cdf3271d 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourceTests.cs @@ -14,11 +14,12 @@ using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests { - public class ResourceTests + public class ResourceTests : RMTestBase { [Fact(Skip = "TODO: Re-record")] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourcesController.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourcesController.cs index e5a2121f0b3c..06e62efdf5c6 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourcesController.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourcesController.cs @@ -19,6 +19,7 @@ using System.Net.Http.Headers; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions; +using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Gallery; using Microsoft.Azure.Graph.RBAC; @@ -37,6 +38,7 @@ public sealed class ResourcesController private EnvironmentSetupHelper helper; private const string TenantIdKey = "TenantId"; private const string DomainKey = "Domain"; + private const string SubscriptionIdKey = "SubscriptionId"; public GraphRbacManagementClient GraphClient { get; private set; } @@ -48,9 +50,6 @@ public sealed class ResourcesController public GalleryClient GalleryClient { get; private set; } - // TODO: http://vstfrd:8080/Azure/RD/_workitems#_a=edit&id=3247094 - //public EventsClient EventsClient { get; private set; } - public AuthorizationManagementClient AuthorizationManagementClient { get; private set; } public string UserDomain { get; private set; } @@ -176,6 +175,10 @@ private GraphRbacManagementClient GetGraphClient() { UserDomain = HttpMockServer.Variables[DomainKey]; } + if (HttpMockServer.Variables.ContainsKey(SubscriptionIdKey)) + { + AzureRMCmdlet.Profile.DefaultContext.Subscription.Id = new Guid(HttpMockServer.Variables[SubscriptionIdKey]); + } } return TestBase.GetGraphServiceClient(this.csmTestFactory, tenantId); diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs index 247c2045770a..b6d51028292c 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs @@ -13,24 +13,22 @@ // ---------------------------------------------------------------------------------- +using System; +using System.Linq; using Microsoft.Azure.Graph.RBAC; using Microsoft.Azure.Graph.RBAC.Models; using Microsoft.Azure.Management.Authorization; -using Microsoft.Azure.Management.Authorization.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; -using Microsoft.Azure.Test.HttpRecorder; -using Microsoft.WindowsAzure.Commands.ScenarioTest; using Microsoft.Azure.Test; -using System; -using System.Linq; -using System.Threading; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests { - public class RoleAssignmentTests + public class RoleAssignmentTests : RMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 index b762610f600b..5b6f34cdd6c6 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 @@ -18,30 +18,30 @@ Tests verifies negative scenarios for RoleAssignments #> function Test-RaNegativeScenarios { - # Setup - Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" + # Setup + Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" - $subscription = Get-AzureSubscription -Current + $subscription = Get-AzureSubscription -Current - # Bad OID does not throw when getting a non-existing role assignment - $badOid = 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa' - $badOidResult = Get-AzureRoleAssignment -ObjectId $badOid - Assert-Null $badOidResult + # Bad OID does not throw when getting a non-existing role assignment + $badOid = 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa' + $badOidResult = Get-AzureRoleAssignment -ObjectId $badOid + Assert-Null $badOidResult - # Bad UPN - $badUpn = 'nonexistent@provider.com' - $badUpnException = "The provided information does not map to an AD object id." - Assert-Throws { Get-AzureRoleAssignment -UserPrincipalName $badUpn } $badUpnException - - # Bad SPN - $badSpn = 'bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb' - $badSpnException = "The provided information does not map to an AD object id." - Assert-Throws { Get-AzureRoleAssignment -ServicePrincipalName $badSpn } $badSpnException - - # Bad Scope - $badScope = '/subscriptions/'+ $subscription.SubscriptionId +'/providers/nonexistent' - $badScopeException = "InvalidResourceNamespace: The resource namespace 'nonexistent' is invalid." - Assert-Throws { Get-AzureRoleAssignment -Scope $badScope } $badScopeException + # Bad UPN + $badUpn = 'nonexistent@provider.com' + $badUpnException = "The provided information does not map to an AD object id." + Assert-Throws { Get-AzureRoleAssignment -UserPrincipalName $badUpn } $badUpnException + + # Bad SPN + $badSpn = 'bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb' + $badSpnException = "The provided information does not map to an AD object id." + Assert-Throws { Get-AzureRoleAssignment -ServicePrincipalName $badSpn } $badSpnException + + # Bad Scope + $badScope = '/subscriptions/'+ $subscription.SubscriptionId +'/providers/nonexistent' + $badScopeException = "InvalidResourceNamespace: The resource namespace 'nonexistent' is invalid." + Assert-Throws { Get-AzureRoleAssignment -Scope $badScope } $badScopeException } <# @@ -50,33 +50,33 @@ Tests verifies creation and deletion of a RoleAssignments by Scope #> function Test-RaByScope { - # Setup - Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" + # Setup + Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" - $definitionName = 'Reader' - $users = Get-AzureADUser | Select-Object -First 1 -Wait - $subscription = Get-AzureSubscription -Current + $definitionName = 'Reader' + $users = Get-AzureADUser | Select-Object -First 1 -Wait + $subscription = Get-AzureSubscription -Current $resourceGroups = Get-AzureResourceGroup | Select-Object -Last 1 -Wait - $scope = '/subscriptions/'+ $subscription.SubscriptionId +'/resourceGroups/' + $resourceGroups[0].ResourceGroupName - Assert-AreEqual 1 $users.Count "There should be at least one user to run the test." - - # Test - [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("8D7DD69E-9AE2-44A1-94D8-F7BC8E12645E") - $newAssignment = New-AzureRoleAssignment ` + $scope = '/subscriptions/'+ $subscription.SubscriptionId +'/resourceGroups/' + $resourceGroups[0].ResourceGroupName + Assert-AreEqual 1 $users.Count "There should be at least one user to run the test." + + # Test + [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("8D7DD69E-9AE2-44A1-94D8-F7BC8E12645E") + $newAssignment = New-AzureRoleAssignment ` -ObjectId $users[0].Id.Guid ` -RoleDefinitionName $definitionName ` -Scope $scope - - # cleanup - DeleteRoleAssignment $newAssignment + + # cleanup + DeleteRoleAssignment $newAssignment - # Assert - Assert-NotNull $newAssignment - Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName - Assert-AreEqual $scope $newAssignment.Scope - Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName - - VerifyRoleAssignmentDeleted $newAssignment + # Assert + Assert-NotNull $newAssignment + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $scope $newAssignment.Scope + Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName + + VerifyRoleAssignmentDeleted $newAssignment } <# @@ -85,31 +85,31 @@ Tests verifies creation and deletion of a RoleAssignments by Resource Group #> function Test-RaByResourceGroup { - # Setup - Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" + # Setup + Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" - $definitionName = 'Contributor' - $users = Get-AzureADUser | Select-Object -Last 1 -Wait - $resourceGroups = Get-AzureResourceGroup | Select-Object -Last 1 -Wait - Assert-AreEqual 1 $users.Count "There should be at least one user to run the test." - Assert-AreEqual 1 $resourceGroups.Count "No resource group found. Unable to run the test." + $definitionName = 'Contributor' + $users = Get-AzureADUser | Select-Object -Last 1 -Wait + $resourceGroups = Get-AzureResourceGroup | Select-Object -Last 1 -Wait + Assert-AreEqual 1 $users.Count "There should be at least one user to run the test." + Assert-AreEqual 1 $resourceGroups.Count "No resource group found. Unable to run the test." - # Test - [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("A4B82891-EBEE-4568-B606-632899BF9453") - $newAssignment = New-AzureRoleAssignment ` + # Test + [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("A4B82891-EBEE-4568-B606-632899BF9453") + $newAssignment = New-AzureRoleAssignment ` -ObjectId $users[0].Id.Guid ` -RoleDefinitionName $definitionName ` -ResourceGroupName $resourceGroups[0].ResourceGroupName - - # cleanup - DeleteRoleAssignment $newAssignment - - # Assert - Assert-NotNull $newAssignment - Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName - Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName - - VerifyRoleAssignmentDeleted $newAssignment + + # cleanup + DeleteRoleAssignment $newAssignment + + # Assert + Assert-NotNull $newAssignment + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName + + VerifyRoleAssignmentDeleted $newAssignment } <# @@ -118,33 +118,33 @@ Tests verifies creation and deletion of a RoleAssignments by Resource #> function Test-RaByResource { - # Setup - Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" + # Setup + Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" - $definitionName = 'Owner' - $groups = Get-AzureADGroup | Select-Object -Last 1 -Wait - Assert-AreEqual 1 $groups.Count "There should be at least one group to run the test." - $resource = Get-AzureResource -ResourceGroupName 'csmrg8120' - Assert-NotNull $resource "Cannot find any resource to continue test execution." + $definitionName = 'Owner' + $groups = Get-AzureADGroup | Select-Object -Last 1 -Wait + Assert-AreEqual 1 $groups.Count "There should be at least one group to run the test." + $resource = Get-AzureResource -ResourceGroupName 'csmrg8120' + Assert-NotNull $resource "Cannot find any resource to continue test execution." - # Test - [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("78D6502F-74FC-4800-BB0A-0E1A7BEBECA4") - $newAssignment = New-AzureRoleAssignment ` + # Test + [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("78D6502F-74FC-4800-BB0A-0E1A7BEBECA4") + $newAssignment = New-AzureRoleAssignment ` -ObjectId $groups[0].Id.Guid ` -RoleDefinitionName $definitionName ` -ResourceGroupName 'csmrg8120' ` -ResourceType $resource.ResourceType ` -ResourceName $resource.Name - - # cleanup - DeleteRoleAssignment $newAssignment - - # Assert - Assert-NotNull $newAssignment - Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName - Assert-AreEqual $groups[0].DisplayName $newAssignment.DisplayName - - VerifyRoleAssignmentDeleted $newAssignment + + # cleanup + DeleteRoleAssignment $newAssignment + + # Assert + Assert-NotNull $newAssignment + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $groups[0].DisplayName $newAssignment.DisplayName + + VerifyRoleAssignmentDeleted $newAssignment } <# @@ -153,34 +153,34 @@ Tests verifies creation and deletion of a RoleAssignments for Service principal #> function Test-RaByServicePrincipal { - # Setup - Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" + # Setup + Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" - $definitionName = 'Reader' - $servicePrincipals = Get-AzureADServicePrincipal | Select-Object -Last 1 -Wait - $subscription = Get-AzureSubscription -Current + $definitionName = 'Reader' + $servicePrincipals = Get-AzureADServicePrincipal | Select-Object -Last 1 -Wait + $subscription = Get-AzureSubscription -Current $resourceGroups = Get-AzureResourceGroup | Select-Object -Last 1 -Wait - $scope = '/subscriptions/'+ $subscription.SubscriptionId +'/resourceGroups/' + $resourceGroups[0].ResourceGroupName - Assert-AreEqual 1 $servicePrincipals.Count "No service principals found. Unable to run the test." + $scope = '/subscriptions/'+ $subscription.SubscriptionId +'/resourceGroups/' + $resourceGroups[0].ResourceGroupName + Assert-AreEqual 1 $servicePrincipals.Count "No service principals found. Unable to run the test." - # Test - [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("FA1A4D3B-2CCA-406B-8956-6B6B32377641") - $newAssignment = New-AzureRoleAssignment ` + # Test + [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("FA1A4D3B-2CCA-406B-8956-6B6B32377641") + $newAssignment = New-AzureRoleAssignment ` -ServicePrincipalName $servicePrincipals[0].DisplayName ` -RoleDefinitionName $definitionName ` -Scope $scope - - - # cleanup - DeleteRoleAssignment $newAssignment - - # Assert - Assert-NotNull $newAssignment - Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName - Assert-AreEqual $scope $newAssignment.Scope - Assert-AreEqual $servicePrincipals[0].DisplayName $newAssignment.DisplayName - - VerifyRoleAssignmentDeleted $newAssignment + + + # cleanup + DeleteRoleAssignment $newAssignment + + # Assert + Assert-NotNull $newAssignment + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $scope $newAssignment.Scope + Assert-AreEqual $servicePrincipals[0].DisplayName $newAssignment.DisplayName + + VerifyRoleAssignmentDeleted $newAssignment } <# @@ -189,47 +189,47 @@ Tests verifies creation and deletion of a RoleAssignments for User Principal Nam #> function Test-RaByUpn { - # Setup - Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" + # Setup + Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" - $definitionName = 'Contributor' - $users = Get-AzureADUser | Select-Object -Last 1 -Wait - $resourceGroups = Get-AzureResourceGroup | Select-Object -Last 1 -Wait - Assert-AreEqual 1 $users.Count "There should be at least one user to run the test." - Assert-AreEqual 1 $resourceGroups.Count "No resource group found. Unable to run the test." + $definitionName = 'Contributor' + $users = Get-AzureADUser | Select-Object -Last 1 -Wait + $resourceGroups = Get-AzureResourceGroup | Select-Object -Last 1 -Wait + Assert-AreEqual 1 $users.Count "There should be at least one user to run the test." + Assert-AreEqual 1 $resourceGroups.Count "No resource group found. Unable to run the test." - # Test - [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("7A750D57-9D92-4BE1-AD66-F099CECFFC01") - $newAssignment = New-AzureRoleAssignment ` + # Test + [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("7A750D57-9D92-4BE1-AD66-F099CECFFC01") + $newAssignment = New-AzureRoleAssignment ` -UPN $users[0].Mail ` -RoleDefinitionName $definitionName ` -ResourceGroupName $resourceGroups[0].ResourceGroupName - - # cleanup - DeleteRoleAssignment $newAssignment - - # Assert - Assert-NotNull $newAssignment - Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName - Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName + + # cleanup + DeleteRoleAssignment $newAssignment + + # Assert + Assert-NotNull $newAssignment + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName - VerifyRoleAssignmentDeleted $newAssignment + VerifyRoleAssignmentDeleted $newAssignment } <# .SYNOPSIS Tests validate correctness of returned permissions when logged in as the assigned user #> function Test-RaUserPermissions { - param([string]$rgName, [string]$action) - - # Setup - - # Test - $permissions = Get-AzureResourceGroup -Name $rgName - - # Assert - Assert-AreEqual 1 $permissions.Permissions.Count "User should have only one permission." - Assert-AreEqual 1 $permissions.Permissions[0].Actions.Count "User should have only one action in the permission." - Assert-AreEqual $action $permissions.Permissions[0].Actions[0] "Permission action mismatch." + param([string]$rgName, [string]$action) + + # Setup + + # Test + $permissions = Get-AzureResourceGroup -Name $rgName + + # Assert + Assert-AreEqual 1 $permissions.Permissions.Count "User should have only one permission." + Assert-AreEqual 1 $permissions.Permissions[0].Actions.Count "User should have only one action in the permission." + Assert-AreEqual $action $permissions.Permissions[0].Actions[0] "Permission action mismatch." } <# @@ -238,17 +238,17 @@ Creates role assignment #> function CreateRoleAssignment { - param([string]$roleAssignmentId, [string]$userId, [string]$definitionName, [string]$resourceGroupName) + param([string]$roleAssignmentId, [string]$userId, [string]$definitionName, [string]$resourceGroupName) - Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" + Add-Type -Path ".\\Microsoft.Azure.Commands.Resources.dll" - [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue($roleAssignmentId) - $newAssignment = New-AzureRoleAssignment ` + [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue($roleAssignmentId) + $newAssignment = New-AzureRoleAssignment ` -ObjectId $userId ` -RoleDefinitionName $definitionName ` -ResourceGroupName $resourceGroupName - return $newAssignment + return $newAssignment } <# @@ -257,9 +257,9 @@ Delete role assignment #> function DeleteRoleAssignment { - param([Parameter(Mandatory=$true)] [object] $roleAssignment) - - Remove-AzureRoleAssignment -ObjectId $roleAssignment.ObjectId.Guid ` + param([Parameter(Mandatory=$true)] [object] $roleAssignment) + + Remove-AzureRoleAssignment -ObjectId $roleAssignment.ObjectId.Guid ` -Scope $roleAssignment.Scope ` -RoleDefinitionName $roleAssignment.RoleDefinitionName ` -Force @@ -271,10 +271,10 @@ Verifies that role assignment does not exist #> function VerifyRoleAssignmentDeleted { - param([Parameter(Mandatory=$true)] [object] $roleAssignment) - - $deletedRoleAssignment = Get-AzureRoleAssignment -ObjectId $roleAssignment.ObjectId.Guid ` + param([Parameter(Mandatory=$true)] [object] $roleAssignment) + + $deletedRoleAssignment = Get-AzureRoleAssignment -ObjectId $roleAssignment.ObjectId.Guid ` -Scope $roleAssignment.Scope ` -RoleDefinitionName $roleAssignment.RoleDefinitionName - Assert-Null $deletedRoleAssignment + Assert-Null $deletedRoleAssignment } \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleDefinitionTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleDefinitionTests.cs index 501b22a4c465..c86b134ebf53 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleDefinitionTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleDefinitionTests.cs @@ -14,11 +14,12 @@ using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Xunit; namespace Microsoft.Azure.Commands.Resources.Test.ScenarioTests { - public class RoleDefinitionTests + public class RoleDefinitionTests : RMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/packages.config b/src/ResourceManager/Resources/Commands.Resources.Test/packages.config index d7fc4577ca75..fb7f97406c50 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/packages.config +++ b/src/ResourceManager/Resources/Commands.Resources.Test/packages.config @@ -22,7 +22,6 @@ - diff --git a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADGroupCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADGroupCommand.cs index 46826d401dab..22633108bcdc 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADGroupCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADGroupCommand.cs @@ -38,7 +38,7 @@ public class GetAzureADGroupCommand : ActiveDirectoryBaseCmdlet [ValidateNotNullOrEmpty] public Guid ObjectId { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ADObjectFilterOptions options = new ADObjectFilterOptions { diff --git a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADGroupMemberCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADGroupMemberCommand.cs index a23c0b666a9b..3c6dc7ffc630 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADGroupMemberCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADGroupMemberCommand.cs @@ -30,7 +30,7 @@ public class GetAzureADGroupMemberCommand : ActiveDirectoryBaseCmdlet [ValidateNotNullOrEmpty] public Guid GroupObjectId { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ADObjectFilterOptions options = new ADObjectFilterOptions { diff --git a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADServicePrincipalCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADServicePrincipalCommand.cs index 2d815f0f2769..8a4e89cac92d 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADServicePrincipalCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADServicePrincipalCommand.cs @@ -44,7 +44,7 @@ public class GetAzureADServicePrincipalCommand : ActiveDirectoryBaseCmdlet [Alias("SPN")] public string ServicePrincipalName { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ADObjectFilterOptions options = new ADObjectFilterOptions { diff --git a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADUserCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADUserCommand.cs index 7b567893647e..28ea3c611bcf 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADUserCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/GetAzureADUserCommand.cs @@ -49,7 +49,7 @@ public class GetAzureADUserCommand : ActiveDirectoryBaseCmdlet [ValidateNotNullOrEmpty] public string Mail { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ADObjectFilterOptions options = new ADObjectFilterOptions { diff --git a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/NewAzureADApplicationCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/NewAzureADApplicationCommand.cs index 34d3f7781095..95254ec56aab 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/NewAzureADApplicationCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/NewAzureADApplicationCommand.cs @@ -112,7 +112,7 @@ public NewAzureADApplicationCommand() KeyUsage = "Verify"; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { CreatePSApplicationParameters createParameters = new CreatePSApplicationParameters { diff --git a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/NewAzureADServicePrincipalCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/NewAzureADServicePrincipalCommand.cs index 28211476f406..fd3f319b1a17 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/NewAzureADServicePrincipalCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/NewAzureADServicePrincipalCommand.cs @@ -31,7 +31,7 @@ public class NewAzureADServicePrincipalCommand : ActiveDirectoryBaseCmdlet [Parameter(Mandatory = false, HelpMessage = "Create the service principal with account disabled.")] public SwitchParameter DisableAccount { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { CreatePSServicePrincipalParameters createParameters = new CreatePSServicePrincipalParameters { diff --git a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/RemoveAzureADApplicationCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/RemoveAzureADApplicationCommand.cs index 27b7f65e4056..5b48cc64ff11 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/RemoveAzureADApplicationCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/RemoveAzureADApplicationCommand.cs @@ -33,7 +33,7 @@ public class RemoveAzureADApplicationCommand : ActiveDirectoryBaseCmdlet [Parameter(Mandatory = false)] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ConfirmAction( Force.IsPresent, diff --git a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/RemoveAzureADServicePrincipalCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/RemoveAzureADServicePrincipalCommand.cs index 3ec3914b4fa4..391899202be6 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/RemoveAzureADServicePrincipalCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ActiveDirectory/RemoveAzureADServicePrincipalCommand.cs @@ -37,7 +37,7 @@ public class RemoveAzureADServicePrincipalCommand : ActiveDirectoryBaseCmdlet [Parameter(Mandatory = false)] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { PSADServicePrincipal servicePrincipal = null; diff --git a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 index ae14cbff45f4..618830eeaa94 100644 --- a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 +++ b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 @@ -55,7 +55,8 @@ ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module TypesToProcess = @( - '.\Compute\Microsoft.Azure.Commands.Compute.Types.ps1xml' + '.\Compute\Microsoft.Azure.Commands.Compute.Types.ps1xml', + '.\Sql\Microsoft.Azure.Commands.Sql.Types.ps1xml' ) # Format files (.ps1xml) to be loaded when importing this module @@ -76,7 +77,7 @@ FormatsToProcess = @( '.\OperationalInsights\Microsoft.Azure.Commands.OperationalInsights.format.ps1xml', '.\AzureBackup\Microsoft.Azure.Commands.AzureBackup.format.ps1xml', '.\UsageAggregates\Microsoft.Azure.Commands.UsageAggregates.Format.ps1xml', - '.\Sql\Microsoft.Azure.Commands.Sql.format.ps1xml' + '.\Sql\Microsoft.Azure.Commands.Sql.format.ps1xml' ) # Modules to import as nested modules of the module specified in ModuleToProcess @@ -103,7 +104,7 @@ NestedModules = @( '.\StorageManagement\Microsoft.Azure.Commands.Management.Storage.dll', '.\OperationalInsights\Microsoft.Azure.Commands.OperationalInsights.dll', '.\UsageAggregates\Microsoft.Azure.Commands.UsageAggregates.dll', - '.\HDInsight\Microsoft.Azure.Commands.HDInsight.dll', + '.\HDInsight\Microsoft.Azure.Commands.HDInsight.dll', '.\ApiManagement\Microsoft.Azure.Commands.ApiManagement.ServiceManagement.dll', '.\AzureBackup\Microsoft.Azure.Commands.AzureBackup.dll', '.\SiteRecovery\Microsoft.Azure.Commands.SiteRecovery.dll' diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index ecb8431b2610..6fd160a4602b 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -241,21 +241,13 @@ - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - {c60342b1-47d3-4a0e-8081-9b97ce60b7af} Commands.Profile - - {ed8ba708-af42-4c08-9f4e-daa1037797d5} - Commands.ApiManagement.ServiceManagement - - - {dc0a9742-df36-48c9-bd2f-68d01aed6257} - Commands.ApiManagement + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common {2493a8f7-1949-4f29-8d53-9d459046c3b8} diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.ActiveDirectory/ActiveDirectoryBaseCmdlet.cs b/src/ResourceManager/Resources/Commands.Resources/Models.ActiveDirectory/ActiveDirectoryBaseCmdlet.cs index 0dfc93e2c35f..3a33b2be17b5 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.ActiveDirectory/ActiveDirectoryBaseCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.ActiveDirectory/ActiveDirectoryBaseCmdlet.cs @@ -12,12 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.ResourceManager.Common; using Microsoft.Azure.Commands.Resources.Models.ActiveDirectory; using Microsoft.WindowsAzure.Commands.Utilities.Common; namespace Microsoft.Azure.Commands.ActiveDirectory.Models { - public abstract class ActiveDirectoryBaseCmdlet : AzureSMCmdlet + public abstract class ActiveDirectoryBaseCmdlet : AzureRMCmdlet { private ActiveDirectoryClient activeDirectoryClient; diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs index f79d8fb12d88..3f22f04d4a07 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs @@ -68,12 +68,12 @@ public partial class ResourcesClient /// /// Creates new ResourceManagementClient /// - /// Profile containing resources to manipulate - public ResourcesClient(AzureSMProfile profile) + /// Profile containing resources to manipulate + public ResourcesClient(AzureContext context) : this( - AzureSession.ClientFactory.CreateClient(profile, AzureEnvironment.Endpoint.ResourceManager), - new GalleryTemplatesClient(profile.DefaultContext), - AzureSession.ClientFactory.CreateClient(profile.DefaultContext, AzureEnvironment.Endpoint.ResourceManager)) + AzureSession.ClientFactory.CreateClient(context, AzureEnvironment.Endpoint.ResourceManager), + new GalleryTemplatesClient(context), + AzureSession.ClientFactory.CreateClient(context, AzureEnvironment.Endpoint.ResourceManager)) { } diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourcesBaseCmdlet.cs b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourcesBaseCmdlet.cs index ec2dc2ec6b3e..baf122f4333a 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourcesBaseCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourcesBaseCmdlet.cs @@ -18,13 +18,14 @@ namespace Microsoft.Azure.Commands.Resources.Models { + using ResourceManager.Common; using Microsoft.Azure.Commands.Resources.Models.Authorization; using Microsoft.WindowsAzure.Commands.Utilities.Common; /// /// Base class for all resources cmdlets /// - public abstract class ResourcesBaseCmdlet : AzureSMCmdlet + public abstract class ResourcesBaseCmdlet : AzureRMCmdlet { /// /// Field that holds the resource client instance @@ -50,7 +51,7 @@ public ResourcesClient ResourcesClient { if (this.resourcesClient == null) { - this.resourcesClient = new ResourcesClient(this.Profile) + this.resourcesClient = new ResourcesClient(DefaultContext) { VerboseLogger = WriteVerboseWithTimestamp, ErrorLogger = WriteErrorWithTimestamp, @@ -74,7 +75,7 @@ public GalleryTemplatesClient GalleryTemplatesClient { // since this accessor can be called before BeginProcessing, use GetCurrentContext if no // profile is passed in - this.galleryTemplatesClient = new GalleryTemplatesClient(this.GetCurrentContext()); + this.galleryTemplatesClient = new GalleryTemplatesClient(DefaultContext); } return this.galleryTemplatesClient; @@ -92,7 +93,7 @@ public AuthorizationClient PoliciesClient { if (this.policiesClient == null) { - this.policiesClient = new AuthorizationClient(this.Profile.DefaultContext); + this.policiesClient = new AuthorizationClient(DefaultContext); } return this.policiesClient; } @@ -107,5 +108,13 @@ public virtual string DetermineParameterSetName() { return this.ParameterSetName; } + + /// + /// This is present for making tests compile, ideally this pattern should go away. + /// + public void ExecuteCmdlet() + { + ProcessRecord(); + } } } diff --git a/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/AzureProviderFeatureCmdletsBase.cs b/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/AzureProviderFeatureCmdletsBase.cs index c5c39393a486..3cbeeb3b22ff 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/AzureProviderFeatureCmdletsBase.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/AzureProviderFeatureCmdletsBase.cs @@ -14,13 +14,14 @@ namespace Microsoft.Azure.Commands.Resources.ProviderFeatures { + using ResourceManager.Common; using Microsoft.Azure.Commands.Resources.Models.ProviderFeatures; using Microsoft.WindowsAzure.Commands.Utilities.Common; /// /// Base class for all feature cmdlets /// - public abstract class AzureProviderFeatureCmdletBase : AzureSMCmdlet + public abstract class AzureProviderFeatureCmdletBase : AzureRMCmdlet { /// /// Cache for the feature client @@ -36,7 +37,7 @@ public ProviderFeatureClient ProviderFeatureClient { if (this.providerFeatureClient == null) { - this.providerFeatureClient = new ProviderFeatureClient(this.Profile.DefaultContext); + this.providerFeatureClient = new ProviderFeatureClient(DefaultContext); } return this.providerFeatureClient; @@ -52,5 +53,13 @@ public virtual string DetermineParameterSetName() { return this.ParameterSetName; } + + /// + /// This is present for making tests compile, ideally this pattern should go away. + /// + public void ExecuteCmdlet() + { + ProcessRecord(); + } } } diff --git a/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/GetAzureProviderFeatureCmdlet.cs b/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/GetAzureProviderFeatureCmdlet.cs index 938091ff18b0..b618daf5d465 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/GetAzureProviderFeatureCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/GetAzureProviderFeatureCmdlet.cs @@ -57,7 +57,7 @@ public class GetAzureProviderFeatureCmdlet : AzureProviderFeatureCmdletBase [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = false, HelpMessage = "When set, lists all available features including those not registered with the current subscription.", ParameterSetName = GetAzureProviderFeatureCmdlet.ListAvailableParameterSet)] public SwitchParameter ListAvailable { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var parameterSetName = this.DetermineParameterSetName(); diff --git a/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/RegisterAzureProviderFeatureCmdlet.cs b/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/RegisterAzureProviderFeatureCmdlet.cs index bf922e71e569..78490c14533e 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/RegisterAzureProviderFeatureCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ProviderFeatures/RegisterAzureProviderFeatureCmdlet.cs @@ -48,7 +48,7 @@ public class RegisterAzureProviderFeatureCmdlet : AzureProviderFeatureCmdletBase /// /// Executes the cmdlet /// - public override void ExecuteCmdlet() + protected override void ProcessRecord() { this.ConfirmAction( force: this.Force, diff --git a/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderCmdlet.cs b/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderCmdlet.cs index edca51c6ee19..1f9fa5bb0899 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderCmdlet.cs @@ -50,7 +50,7 @@ public class GetAzureProviderCmdlet : ResourcesBaseCmdlet /// /// Executes the cmdlet /// - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var parameterSetName = this.DetermineParameterSetName(); diff --git a/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs b/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs index 2ea799cc7aac..b0afd7a0b6c4 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs @@ -39,7 +39,7 @@ public class GetAzureProviderOperationCommand : ResourcesBaseCmdlet /// /// Executes the cmdlet /// - public override void ExecuteCmdlet() + protected override void ProcessRecord() { // remove leading and trailing whitespaces this.ActionString = this.ActionString.Trim(); diff --git a/src/ResourceManager/Resources/Commands.Resources/Providers/RegisterAzureProviderCmdlet.cs b/src/ResourceManager/Resources/Commands.Resources/Providers/RegisterAzureProviderCmdlet.cs index 6f2a37c01aae..6258900eca54 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Providers/RegisterAzureProviderCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Providers/RegisterAzureProviderCmdlet.cs @@ -41,7 +41,7 @@ public class RegisterAzureProviderCmdlet : ResourcesBaseCmdlet /// /// Executes the cmdlet /// - public override void ExecuteCmdlet() + protected override void ProcessRecord() { this.ConfirmAction( force: this.Force, diff --git a/src/ResourceManager/Resources/Commands.Resources/Providers/UnregisterAzureProviderCmdlet.cs b/src/ResourceManager/Resources/Commands.Resources/Providers/UnregisterAzureProviderCmdlet.cs index 4fdffa201ba4..95932e65c4e2 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Providers/UnregisterAzureProviderCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Providers/UnregisterAzureProviderCmdlet.cs @@ -41,7 +41,7 @@ public class UnregisterAzureProviderCmdlet : ResourcesBaseCmdlet /// /// Executes the cmdlet /// - public override void ExecuteCmdlet() + protected override void ProcessRecord() { this.ConfirmAction( force: this.Force, diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommand.cs index 03159c852894..ee5cbc55f67b 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/GetAzureResourceGroupDeploymentCommand.cs @@ -37,7 +37,7 @@ public class GetAzureResourceGroupDeploymentCommand : ResourcesBaseCmdlet [ValidateNotNullOrEmpty] public string ProvisioningState { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { FilterResourceGroupDeploymentOptions options = new FilterResourceGroupDeploymentOptions() { diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommand.cs index acf6650971c9..5460d9e5cc74 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommand.cs @@ -46,7 +46,7 @@ public NewAzureResourceGroupDeploymentCommand() this.Mode = DeploymentMode.Incremental; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { CreatePSResourceGroupDeploymentParameters parameters = new CreatePSResourceGroupDeploymentParameters() { diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/RemoveAzureResourceGroupDeploymentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/RemoveAzureResourceGroupDeploymentCommand.cs index 8a90dfa99070..3fdea6a31258 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/RemoveAzureResourceGroupDeploymentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/RemoveAzureResourceGroupDeploymentCommand.cs @@ -39,7 +39,7 @@ public class RemoveAzureResourceGroupDeploymentCommand : ResourcesBaseCmdlet [Parameter(Position = 3, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "True if succeed, false otherwise.")] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ConfirmAction( Force.IsPresent, diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/StopAzureResourceGroupDeploymentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/StopAzureResourceGroupDeploymentCommand.cs index 7ddcb77495fe..a87327f155ad 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/StopAzureResourceGroupDeploymentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroupDeployments/StopAzureResourceGroupDeploymentCommand.cs @@ -39,7 +39,7 @@ public class StopAzureResourceGroupDeploymentCommand : ResourcesBaseCmdlet [Parameter(Position = 3, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "True if succeed, false otherwise.")] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ConfirmAction( Force.IsPresent, diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureLocationCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureLocationCommand.cs index 69834262df57..3125c8932c18 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureLocationCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureLocationCommand.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Resources [Cmdlet(VerbsCommon.Get, "AzureLocation"), OutputType(typeof(List))] public class GetAzureLocationCommand : ResourcesBaseCmdlet, IModuleAssemblyInitializer { - public override void ExecuteCmdlet() + protected override void ProcessRecord() { WriteObject(ResourcesClient.GetLocations(), true); } diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupCommand.cs index 12ece2649c21..dc5ffdb843c0 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupCommand.cs @@ -36,7 +36,7 @@ public class GetAzureResourceGroupCommand : ResourcesBaseCmdlet [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = "GetMultiple")] public SwitchParameter Detailed { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { var detailed = Detailed.IsPresent || !string.IsNullOrEmpty(Name); WriteObject(ResourcesClient.FilterResourceGroups(Name, Tag, detailed), true); diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupLogCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupLogCommand.cs index d8572700da5c..1ba7ad75a441 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupLogCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/GetAzureResourceGroupLogCommand.cs @@ -43,7 +43,7 @@ public class GetAzureResourceGroupLogCommand : ResourcesBaseCmdlet [Parameter(ParameterSetName = AllSetName, HelpMessage = "Optional. If given, return logs of all the operations including CRUD and deployment.")] public SwitchParameter All { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { GetPSResourceGroupLogParameters parameters = new GetPSResourceGroupLogParameters { diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs index 65749bef5122..e4cdb12c51dd 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/NewAzureResourceGroupCommand.cs @@ -46,7 +46,7 @@ public class NewAzureResourceGroupCommand : ResourceWithParameterBaseCmdlet, IDy [Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { CreatePSResourceGroupParameters parameters = new CreatePSResourceGroupParameters { diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/RemoveAzureResourceGroupCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/RemoveAzureResourceGroupCommand.cs index 3466c35e8ee1..157cf8150253 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/RemoveAzureResourceGroupCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/RemoveAzureResourceGroupCommand.cs @@ -35,7 +35,7 @@ public class RemoveAzureResourceGroupCommand : ResourcesBaseCmdlet [Parameter(Mandatory = false)] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { ConfirmAction( Force.IsPresent, diff --git a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/SetAzureResourceGroupCommand.cs b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/SetAzureResourceGroupCommand.cs index f0229511ca01..86e5c0089034 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/SetAzureResourceGroupCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ResourceGroups/SetAzureResourceGroupCommand.cs @@ -33,7 +33,7 @@ public class SetAzureResourceGroupCommand : ResourcesBaseCmdlet [Parameter(Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, HelpMessage = "An array of hashtables which represents resource tags.")] public Hashtable[] Tag { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { UpdatePSResourceGroupParameters parameters = new UpdatePSResourceGroupParameters { diff --git a/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/GetAzureRoleAssignmentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/GetAzureRoleAssignmentCommand.cs index 070423867724..0ec75a089f49 100644 --- a/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/GetAzureRoleAssignmentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/GetAzureRoleAssignmentCommand.cs @@ -192,7 +192,7 @@ public class GetAzureRoleAssignmentCommand : ResourcesBaseCmdlet [ValidateNotNullOrEmpty] public string Scope { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { FilterRoleAssignmentsOptions options = new FilterRoleAssignmentsOptions() { diff --git a/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs index f30ecc47aecc..a00fa028a9f1 100644 --- a/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs @@ -140,7 +140,7 @@ public class NewAzureRoleAssignmentCommand : ResourcesBaseCmdlet [ValidateNotNullOrEmpty] public string RoleDefinitionName { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { FilterRoleAssignmentsOptions parameters = new FilterRoleAssignmentsOptions() { diff --git a/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs index 239c74e902b5..779abe8d19b3 100644 --- a/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/RemoveAzureRoleAssignmentCommand.cs @@ -170,7 +170,7 @@ public class RemoveAzureRoleAssignmentCommand : ResourcesBaseCmdlet [Parameter(Mandatory = false)] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { PSRoleAssignment roleAssignment = null; FilterRoleAssignmentsOptions options = new FilterRoleAssignmentsOptions() diff --git a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/GetAzureRoleDefinitionCommand.cs b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/GetAzureRoleDefinitionCommand.cs index ff944a5cf3b9..1920bdf09d70 100644 --- a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/GetAzureRoleDefinitionCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/GetAzureRoleDefinitionCommand.cs @@ -32,7 +32,7 @@ public class GetAzureRoleDefinitionCommand : ResourcesBaseCmdlet [Parameter(Mandatory=false)] public SwitchParameter Custom { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { if (Custom.IsPresent) { diff --git a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/NewAzureRoleDefinitionCommand.cs b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/NewAzureRoleDefinitionCommand.cs index cd27da7940da..f98c2300e603 100644 --- a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/NewAzureRoleDefinitionCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/NewAzureRoleDefinitionCommand.cs @@ -36,7 +36,7 @@ public class NewAzureRoleDefinitionCommand : ResourcesBaseCmdlet [Parameter(Position = 0, Mandatory = true, ParameterSetName = ParameterSet.RoleDefinition, HelpMessage = "Role definition.")] public PSRoleDefinition Role { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { PSRoleDefinition role = null; if (!string.IsNullOrEmpty(InputFile)) diff --git a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/RemoveAzureRoleDefinitionCommand.cs b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/RemoveAzureRoleDefinitionCommand.cs index e819b38e07ed..fb4df285e506 100644 --- a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/RemoveAzureRoleDefinitionCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/RemoveAzureRoleDefinitionCommand.cs @@ -35,7 +35,7 @@ public class RemoveAzureRoleDefinitionCommand : ResourcesBaseCmdlet [Parameter(Mandatory = false)] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { PSRoleDefinition roleDefinition = null; diff --git a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/SetAzureRoleDefinitionCommand.cs b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/SetAzureRoleDefinitionCommand.cs index 68d844af9dfc..47d09c5fe6c6 100644 --- a/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/SetAzureRoleDefinitionCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/RoleDefinitions/SetAzureRoleDefinitionCommand.cs @@ -36,7 +36,7 @@ public class SetAzureRoleDefinitionCommand : ResourcesBaseCmdlet [Parameter(Mandatory = true, ValueFromPipeline = true, ParameterSetName = ParameterSet.RoleDefinition, HelpMessage = "Role definition.")] public PSRoleDefinition Role { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { PSRoleDefinition role = null; if (!string.IsNullOrEmpty(InputFile)) diff --git a/src/ResourceManager/Resources/Commands.Resources/Templates/GetAzureResourceGroupGalleryTemplateCommand.cs b/src/ResourceManager/Resources/Commands.Resources/Templates/GetAzureResourceGroupGalleryTemplateCommand.cs index 54fdb43e08f3..19f8e9d3b8d1 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Templates/GetAzureResourceGroupGalleryTemplateCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Templates/GetAzureResourceGroupGalleryTemplateCommand.cs @@ -47,7 +47,7 @@ public class GetAzureResourceGroupGalleryTemplateCommand : ResourcesBaseCmdlet [Parameter(Position = 4, ParameterSetName = BaseParameterSetName, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Optional. Include all versions.")] public SwitchParameter AllVersions { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { FilterGalleryTemplatesOptions options = new FilterGalleryTemplatesOptions() { diff --git a/src/ResourceManager/Resources/Commands.Resources/Templates/SaveAzureResourceGroupGalleryTemplateCommand.cs b/src/ResourceManager/Resources/Commands.Resources/Templates/SaveAzureResourceGroupGalleryTemplateCommand.cs index b16092d8d93f..5c08c43304e8 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Templates/SaveAzureResourceGroupGalleryTemplateCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Templates/SaveAzureResourceGroupGalleryTemplateCommand.cs @@ -35,7 +35,7 @@ public class SaveAzureResourceGroupGalleryTemplateCommand : ResourcesBaseCmdlet [Parameter(Position = 2, Mandatory = false, HelpMessage = "Do not ask for confirmation.")] public SwitchParameter Force { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { string path = GalleryTemplatesClient.DownloadGalleryTemplateFile( Identity, diff --git a/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs b/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs index 7b9b658e11d1..e81768147e90 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Templates/TestAzureResourceGroupTemplateCommand.cs @@ -38,7 +38,7 @@ public TestAzureResourceGroupTemplateCommand() this.Mode = DeploymentMode.Incremental; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { this.WriteWarning("The Test-AzureResourceGroupTemplate cmdlet is being renamed to Test-AzureResourceGroupDeployment in a future release."); ValidatePSResourceGroupDeploymentParameters parameters = new ValidatePSResourceGroupDeploymentParameters() 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 b30e28f03ab8..a25d33e168a2 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj +++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj @@ -191,8 +191,12 @@ + + + Always + Always @@ -240,6 +244,10 @@ + + {3b48a77b-5956-4a62-9081-92ba04b02b27} + Commands.Common.Test + {c1bda476-a5cc-4394-914d-48b0ec31a710} Commands.ScenarioTests.Common @@ -252,10 +260,6 @@ {65c3a86a-716d-4e7d-ab67-1db00b3bf72d} Commands.Common.Storage - - {3b48a77b-5956-4a62-9081-92ba04b02b27} - Commands.Common.Test - {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common @@ -408,6 +412,30 @@ Always + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + PreserveNewest diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 index b52116cb13d4..c85d924931d1 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 @@ -161,9 +161,8 @@ function Get-ElasticPoolName .SYNOPSIS Creates a resource group for tests #> -function Create-ResourceGroupForTest () +function Create-ResourceGroupForTest ($location = "Japan East") { - $location = "Japan East" $rgName = Get-ResourceGroupName $rg = New-AzureResourceGroup -Name $rgName -Location $location diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1 index 8cda310d424b..3ef9a64649c8 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1 @@ -140,6 +140,19 @@ function Test-DatabaseDataMaskingBasicRuleLifecycle Assert-AreEqual $rule.TableName $params.table2 Assert-AreEqual $rule.ColumnName $params.column2 + Set-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" + $rule = Get-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId + + # 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 + $ruleCountBefore = (Get-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName).Count $ruleCountBefore = if ( !$ruleCountBefore ) {0} else {$ruleCountBefore} Remove-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -Force @@ -353,7 +366,7 @@ function Test-DatabaseDataMaskingRuleCreationWithoutPolicy { # Setup - $testSuffix = 45262 + $testSuffix = 457822 $params = Create-DataMaskingTestEnvironment $testSuffix $ruleId = "rule1" try diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.cs new file mode 100644 index 000000000000..5fe031a67bc9 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.cs @@ -0,0 +1,79 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.ScenarioTest.SqlTests; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests +{ + public class DatabaseReplicationTests : SqlTestsBase + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateDatabaseCopy() + { + RunPowerShellTest("Test-CreateDatabaseCopy"); + } + + [Fact] + [Trait(Category.Sql, Category.CheckIn)] + public void TestCreateDatabaseCopyV2() + { + RunPowerShellTest("Test-CreateDatabaseCopyV2"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateSecondaryDatabase() + { + RunPowerShellTest("Test-CreateSecondaryDatabase"); + } + + [Fact] + [Trait(Category.Sql, Category.CheckIn)] + public void TestCreateSecondaryDatabaseV2() + { + RunPowerShellTest("Test-CreateSecondaryDatabaseV2"); + } + + [Fact] + [Trait(Category.Sql, Category.CheckIn)] + public void TestGetReplicationLink() + { + RunPowerShellTest("Test-GetReplicationLink"); + } + + [Fact] + [Trait(Category.Sql, Category.CheckIn)] + public void TestGetReplicationLinkV2() + { + RunPowerShellTest("Test-GetReplicationLinkV2"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRemoveSecondaryDatabase() + { + RunPowerShellTest("Test-RemoveSecondaryDatabase"); + } + + [Fact] + [Trait(Category.Sql, Category.CheckIn)] + public void TestRemoveSecondaryDatabaseV2() + { + RunPowerShellTest("Test-RemoveSecondaryDatabaseV2"); + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.ps1 new file mode 100644 index 000000000000..b96efe191e51 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.ps1 @@ -0,0 +1,253 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# + .SYNOPSIS + Tests creating a database copy +#> +function Test-CreateDatabaseCopy +{ + Test-CreateCopyInternal "12.0" "North Europe" +} + +<# + .SYNOPSIS + Tests creating a database copy +#> +function Test-CreateDatabaseCopyV2 +{ + Test-CreateCopyInternal "2.0" "North Central US" +} + +<# + .SYNOPSIS + Tests creating a database copy +#> +function Test-CreateCopyInternal ($serverVersion, $location = "North Europe") +{ + # Setup + $rg = Create-ResourceGroupForTest $location + $server = Create-ServerForTest $rg $serverVersion $location + $database = Create-DatabaseForTest $rg $server "Standard" + + $copyRg = Create-ResourceGroupForTest $location + $copyServer = Create-ServerForTest $copyRg $serverVersion $location + $copyDatabaseName = Get-DatabaseName + + try + { + # Create a local database copy + $dbLocalCopy = New-AzureSqlDatabaseCopy -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName ` + -CopyDatabaseName $copyDatabaseName + Assert-AreEqual $dbLocalCopy.ResourceGroupName $rg.ResourceGroupName + Assert-AreEqual $dbLocalCopy.ServerName $server.ServerName + Assert-AreEqual $dbLocalCopy.DatabaseName $database.DatabaseName + Assert-AreEqual $dbLocalCopy.CopyResourceGroupName $rg.ResourceGroupName + Assert-AreEqual $dbLocalCopy.CopyServerName $server.ServerName + Assert-AreEqual $dbLocalCopy.CopyDatabaseName $copyDatabaseName + + # Create a cross server copy + $dbCrossServerCopy = New-AzureSqlDatabaseCopy -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName ` + -CopyResourceGroupName $copyRg.ResourceGroupName -CopyServerName $copyServer.ServerName -CopyDatabaseName $copyDatabaseName + Assert-AreEqual $dbCrossServerCopy.ResourceGroupName $rg.ResourceGroupName + Assert-AreEqual $dbCrossServerCopy.ServerName $server.ServerName + Assert-AreEqual $dbCrossServerCopy.DatabaseName $database.DatabaseName + Assert-AreEqual $dbCrossServerCopy.CopyResourceGroupName $copyRg.ResourceGroupName + Assert-AreEqual $dbCrossServerCopy.CopyServerName $copyServer.ServerName + Assert-AreEqual $dbCrossServerCopy.CopyDatabaseName $copyDatabaseName + } + finally + { + Remove-ResourceGroupForTest $rg + Remove-ResourceGroupForTest $copyRg + } +} + +<# + .SYNOPSIS + Tests creating a secondary database +#> +function Test-CreateSecondaryDatabase +{ + Test-CreateSecondaryDatabaseInternal "12.0" "North Europe" +} + +<# + .SYNOPSIS + Tests creating a secondary database +#> +function Test-CreateSecondaryDatabaseV2 +{ + Test-CreateSecondaryDatabaseInternal "2.0" "North Central US" +} + +<# + .SYNOPSIS + Tests creating a secondary database +#> +function Test-CreateSecondaryDatabaseInternal ($serverVersion, $location = "North Europe") +{ + # Setup + $rg = Create-ResourceGroupForTest $location + $server = Create-ServerForTest $rg $serverVersion $location + $database = Create-DatabaseForTest $rg $server + + $partRg = Create-ResourceGroupForTest $location + $partServer = Create-ServerForTest $partRg $serverVersion $location + + try + { + # Create Readable Secondary + $readSecondary = New-AzureSqlDatabaseSecondary -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName ` + -PartnerResourceGroupName $partRg.ResourceGroupName -PartnerServerName $partServer.ServerName -AllowConnections All + Assert-NotNull $readSecondary.LinkId + Assert-AreEqual $readSecondary.ResourceGroupName $rg.ResourceGroupName + Assert-AreEqual $readSecondary.ServerName $server.ServerName + Assert-AreEqual $readSecondary.DatabaseName $database.DatabaseName + Assert-AreEqual $readSecondary.Role "Primary" + Assert-AreEqual $readSecondary.Location $location + Assert-AreEqual $readSecondary.PartnerResourceGroupName $partRg.ResourceGroupName + Assert-AreEqual $readSecondary.PartnerServerName $partServer.ServerName + Assert-NotNull $readSecondary.PartnerRole + Assert-AreEqual $readSecondary.PartnerLocation $location + Assert-NotNull $readSecondary.AllowConnections + Assert-NotNull $readSecondary.ReplicationState + Assert-NotNull $readSecondary.PercentComplete + } + finally + { + Remove-ResourceGroupForTest $rg + Remove-ResourceGroupForTest $partRg + } +} + +<# + .SYNOPSIS + Tests getting a secondary database +#> +function Test-GetReplicationLink +{ + Test-GetReplicationLinkInternal "12.0" "North Europe" +} + +<# + .SYNOPSIS + Tests getting a secondary database +#> +function Test-GetReplicationLinkV2 +{ + Test-GetReplicationLinkInternal "2.0" "North Central US" +} + +<# + .SYNOPSIS + Tests getting a secondary database +#> +function Test-GetReplicationLinkInternal ($serverVersion, $location = "North Europe") +{ + # Setup + $rg = Create-ResourceGroupForTest $location + $server = Create-ServerForTest $rg $serverVersion $location + $database = Create-DatabaseForTest $rg $server + + $partRg = Create-ResourceGroupForTest $location + $partServer = Create-ServerForTest $partRg $serverVersion $location + + try + { + # Get Secondary + New-AzureSqlDatabaseSecondary -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName ` + -PartnerResourceGroupName $partRg.ResourceGroupName -PartnerServerName $partServer.ServerName -AllowConnections All + + $secondary = Get-AzureSqlDatabaseReplicationLink -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName ` + -DatabaseName $database.DatabaseName -PartnerResourceGroupName $partRg.ResourceGroupName -PartnerServerName $partServer.ServerName + Assert-NotNull $secondary.LinkId + Assert-AreEqual $secondary.ResourceGroupName $rg.ResourceGroupName + Assert-AreEqual $secondary.ServerName $server.ServerName + Assert-AreEqual $secondary.DatabaseName $database.DatabaseName + Assert-AreEqual $secondary.Role Primary + Assert-AreEqual $secondary.Location $location + Assert-AreEqual $secondary.PartnerResourceGroupName $partRg.ResourceGroupName + Assert-AreEqual $secondary.PartnerServerName $partServer.ServerName + Assert-NotNull $secondary.PartnerRole + Assert-AreEqual $secondary.PartnerLocation $location + Assert-NotNull $secondary.AllowConnections + Assert-NotNull $secondary.ReplicationState + Assert-NotNull $secondary.PercentComplete + } + finally + { + Remove-ResourceGroupForTest $rg + Remove-ResourceGroupForTest $partRg + } +} + +<# + .SYNOPSIS + Tests removing a secondary database +#> +function Test-RemoveSecondaryDatabase +{ + Test-RemoveSecondaryDatabaseInternal "12.0" "North Europe" +} + +<# + .SYNOPSIS + Tests removing a secondary database +#> +function Test-RemoveSecondaryDatabaseV2 +{ + Test-RemoveSecondaryDatabaseInternal "2.0" "North Central US" +} + +<# + .SYNOPSIS + Tests removing a secondary database +#> +function Test-RemoveSecondaryDatabaseInternal ($serverVersion, $location = "North Europe") +{ + # Setup + $rg = Create-ResourceGroupForTest $location + $server = Create-ServerForTest $rg $serverVersion $location + $database = Create-DatabaseForTest $rg $server + + $partRg = Create-ResourceGroupForTest $location + $partServer = Create-ServerForTest $partRg $serverVersion $location + + try + { + # remove Secondary + New-AzureSqlDatabaseSecondary -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName ` + -PartnerResourceGroupName $partRg.ResourceGroupName -PartnerServerName $partServer.ServerName -AllowConnections All + + Remove-AzureSqlDatabaseSecondary -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName ` + -PartnerResourceGroupName $partRg.ResourceGroupName -PartnerServerName $partServer.ServerName + } + finally + { + Remove-ResourceGroupForTest $rg + Remove-ResourceGroupForTest $partRg + } +} + + +<# + .SYNOPSIS + Creates test database +#> +function Create-DatabaseForTest ($rg, $server, $edition = "Premium") +{ + $databaseName = Get-DatabaseName + New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName -Edition $edition +} \ 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 654979996d5e..a0a5957fc285 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": [ - "14998" + "14920" ], "x-ms-request-id": [ - "bcde5d44-db27-4845-9935-bfd57f9d114d" + "4bb2e471-be8e-4edc-a4e0-e07d510ced2e" ], "x-ms-correlation-request-id": [ - "bcde5d44-db27-4845-9935-bfd57f9d114d" + "4bb2e471-be8e-4edc-a4e0-e07d510ced2e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041259Z:bcde5d44-db27-4845-9935-bfd57f9d114d" + "WESTEUROPE:20150827T171304Z:4bb2e471-be8e-4edc-a4e0-e07d510ced2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:12:58 GMT" + "Thu, 27 Aug 2015 17:13:03 GMT" ] }, "StatusCode": 404 @@ -85,13 +85,13 @@ "1199" ], "x-ms-request-id": [ - "053723fd-1d1f-4501-873c-ccad25341f91" + "99891857-7561-4eaa-b61c-1df679b9f44d" ], "x-ms-correlation-request-id": [ - "053723fd-1d1f-4501-873c-ccad25341f91" + "99891857-7561-4eaa-b61c-1df679b9f44d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041301Z:053723fd-1d1f-4501-873c-ccad25341f91" + "WESTEUROPE:20150827T171307Z:99891857-7561-4eaa-b61c-1df679b9f44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:01 GMT" + "Thu, 27 Aug 2015 17:13:07 GMT" ] }, "StatusCode": 201 @@ -121,7 +121,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-13T04:13:02.8498147Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"eb2c08b8-8a09-45b8-b87b-9865b60be0e4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-27T17:13:08.6372231Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"e2dede94-8e28-40bd-9e26-7521483a8a4f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2295" @@ -139,13 +139,13 @@ "1198" ], "x-ms-request-id": [ - "eb2c08b8-8a09-45b8-b87b-9865b60be0e4" + "e2dede94-8e28-40bd-9e26-7521483a8a4f" ], "x-ms-correlation-request-id": [ - "eb2c08b8-8a09-45b8-b87b-9865b60be0e4" + "e2dede94-8e28-40bd-9e26-7521483a8a4f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041302Z:eb2c08b8-8a09-45b8-b87b-9865b60be0e4" + "WESTEUROPE:20150827T171308Z:e2dede94-8e28-40bd-9e26-7521483a8a4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:02 GMT" + "Thu, 27 Aug 2015 17:13:08 GMT" ] }, "StatusCode": 200 @@ -175,7 +175,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-13T04:13:05.3267194Z\",\r\n \"duration\": \"PT1.3573164S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-27T17:13:11.9235315Z\",\r\n \"duration\": \"PT2.0722054S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2303" @@ -193,13 +193,13 @@ "1197" ], "x-ms-request-id": [ - "d2686cd3-aa7a-4868-a97e-bc5465ecc9b2" + "2dae4319-d1c4-415a-a028-00b02ea2d314" ], "x-ms-correlation-request-id": [ - "d2686cd3-aa7a-4868-a97e-bc5465ecc9b2" + "2dae4319-d1c4-415a-a028-00b02ea2d314" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041306Z:d2686cd3-aa7a-4868-a97e-bc5465ecc9b2" + "WESTEUROPE:20150827T171312Z:2dae4319-d1c4-415a-a028-00b02ea2d314" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +208,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:05 GMT" + "Thu, 27 Aug 2015 17:13:12 GMT" ] }, "StatusCode": 201 @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14919" ], "x-ms-request-id": [ - "52ce6a12-74fa-4dd4-941e-9267e6b1fae6" + "75391824-2472-48cb-96f3-0d520e71b6dc" ], "x-ms-correlation-request-id": [ - "52ce6a12-74fa-4dd4-941e-9267e6b1fae6" + "75391824-2472-48cb-96f3-0d520e71b6dc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041306Z:52ce6a12-74fa-4dd4-941e-9267e6b1fae6" + "WESTEUROPE:20150827T171313Z:75391824-2472-48cb-96f3-0d520e71b6dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,7 +256,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:06 GMT" + "Thu, 27 Aug 2015 17:13:13 GMT" ] }, "StatusCode": 200 @@ -286,16 +286,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14917" ], "x-ms-request-id": [ - "0c0d4d9f-72b2-457c-8c76-5e5d52ad6d80" + "49f4561f-316c-443b-a18a-af2461968dad" ], "x-ms-correlation-request-id": [ - "0c0d4d9f-72b2-457c-8c76-5e5d52ad6d80" + "49f4561f-316c-443b-a18a-af2461968dad" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041310Z:0c0d4d9f-72b2-457c-8c76-5e5d52ad6d80" + "WESTEUROPE:20150827T171317Z:49f4561f-316c-443b-a18a-af2461968dad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,7 +304,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:09 GMT" + "Thu, 27 Aug 2015 17:13:17 GMT" ] }, "StatusCode": 200 @@ -334,16 +334,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14915" ], "x-ms-request-id": [ - "84133d6a-e93d-43e7-ad16-bdf1d2bb30fa" + "09944eb0-a80c-4473-bdcf-4203794b1349" ], "x-ms-correlation-request-id": [ - "84133d6a-e93d-43e7-ad16-bdf1d2bb30fa" + "09944eb0-a80c-4473-bdcf-4203794b1349" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041313Z:84133d6a-e93d-43e7-ad16-bdf1d2bb30fa" + "WESTEUROPE:20150827T171321Z:09944eb0-a80c-4473-bdcf-4203794b1349" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,7 +352,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:12 GMT" + "Thu, 27 Aug 2015 17:13:20 GMT" ] }, "StatusCode": 200 @@ -382,16 +382,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14913" ], "x-ms-request-id": [ - "5e0ea8e4-9eac-48f6-887d-ca5388961fa3" + "c9bacb03-0c7f-436f-a763-4d1c1c9c43b7" ], "x-ms-correlation-request-id": [ - "5e0ea8e4-9eac-48f6-887d-ca5388961fa3" + "c9bacb03-0c7f-436f-a763-4d1c1c9c43b7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041316Z:5e0ea8e4-9eac-48f6-887d-ca5388961fa3" + "WESTEUROPE:20150827T171324Z:c9bacb03-0c7f-436f-a763-4d1c1c9c43b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,7 +400,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:15 GMT" + "Thu, 27 Aug 2015 17:13:24 GMT" ] }, "StatusCode": 200 @@ -430,16 +430,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14910" ], "x-ms-request-id": [ - "1ef30b82-2833-4085-b684-4344d533ad9e" + "342f6136-04ba-4a84-bb17-947cee13c06e" ], "x-ms-correlation-request-id": [ - "1ef30b82-2833-4085-b684-4344d533ad9e" + "342f6136-04ba-4a84-bb17-947cee13c06e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041320Z:1ef30b82-2833-4085-b684-4344d533ad9e" + "WESTEUROPE:20150827T171328Z:342f6136-04ba-4a84-bb17-947cee13c06e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,7 +448,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:19 GMT" + "Thu, 27 Aug 2015 17:13:27 GMT" ] }, "StatusCode": 200 @@ -478,16 +478,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14908" ], "x-ms-request-id": [ - "680560de-cba8-40ef-a01c-f925f55595e8" + "3bd7ef17-5d93-413f-9cf3-2aae96699fbd" ], "x-ms-correlation-request-id": [ - "680560de-cba8-40ef-a01c-f925f55595e8" + "3bd7ef17-5d93-413f-9cf3-2aae96699fbd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041323Z:680560de-cba8-40ef-a01c-f925f55595e8" + "WESTEUROPE:20150827T171332Z:3bd7ef17-5d93-413f-9cf3-2aae96699fbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,7 +496,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:22 GMT" + "Thu, 27 Aug 2015 17:13:31 GMT" ] }, "StatusCode": 200 @@ -526,16 +526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14906" ], "x-ms-request-id": [ - "769eaeab-5ad7-4d60-ae05-7afc51142b3a" + "721b9837-489d-414d-affe-3d6ef06573bc" ], "x-ms-correlation-request-id": [ - "769eaeab-5ad7-4d60-ae05-7afc51142b3a" + "721b9837-489d-414d-affe-3d6ef06573bc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041326Z:769eaeab-5ad7-4d60-ae05-7afc51142b3a" + "WESTEUROPE:20150827T171335Z:721b9837-489d-414d-affe-3d6ef06573bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -544,7 +544,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:26 GMT" + "Thu, 27 Aug 2015 17:13:34 GMT" ] }, "StatusCode": 200 @@ -574,16 +574,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14904" ], "x-ms-request-id": [ - "7c0296d1-547b-4e8b-bbd1-5d517cf09c3d" + "576ed308-27d8-4c17-b8de-ebadddc38c00" ], "x-ms-correlation-request-id": [ - "7c0296d1-547b-4e8b-bbd1-5d517cf09c3d" + "576ed308-27d8-4c17-b8de-ebadddc38c00" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041330Z:7c0296d1-547b-4e8b-bbd1-5d517cf09c3d" + "WESTEUROPE:20150827T171339Z:576ed308-27d8-4c17-b8de-ebadddc38c00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592,7 +592,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:30 GMT" + "Thu, 27 Aug 2015 17:13:38 GMT" ] }, "StatusCode": 200 @@ -622,16 +622,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14902" ], "x-ms-request-id": [ - "13462bc3-d51f-4b55-8272-61ea867881d7" + "27dfbb5e-6c9b-46eb-a2c6-f69796186333" ], "x-ms-correlation-request-id": [ - "13462bc3-d51f-4b55-8272-61ea867881d7" + "27dfbb5e-6c9b-46eb-a2c6-f69796186333" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041333Z:13462bc3-d51f-4b55-8272-61ea867881d7" + "WESTEUROPE:20150827T171343Z:27dfbb5e-6c9b-46eb-a2c6-f69796186333" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,7 +640,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:33 GMT" + "Thu, 27 Aug 2015 17:13:43 GMT" ] }, "StatusCode": 200 @@ -670,16 +670,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14900" ], "x-ms-request-id": [ - "3bc3c4cb-51e0-447d-9d00-524a2fef2ca2" + "223db737-b20c-4471-a22e-b2b23e57f4d0" ], "x-ms-correlation-request-id": [ - "3bc3c4cb-51e0-447d-9d00-524a2fef2ca2" + "223db737-b20c-4471-a22e-b2b23e57f4d0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041336Z:3bc3c4cb-51e0-447d-9d00-524a2fef2ca2" + "WESTEUROPE:20150827T171346Z:223db737-b20c-4471-a22e-b2b23e57f4d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -688,7 +688,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:36 GMT" + "Thu, 27 Aug 2015 17:13:46 GMT" ] }, "StatusCode": 200 @@ -718,16 +718,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14898" ], "x-ms-request-id": [ - "b811fa75-a1a9-4255-9b00-6586b26cef47" + "0a7fbf81-a5a4-4331-ab64-7d81b894a9b4" ], "x-ms-correlation-request-id": [ - "b811fa75-a1a9-4255-9b00-6586b26cef47" + "0a7fbf81-a5a4-4331-ab64-7d81b894a9b4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041340Z:b811fa75-a1a9-4255-9b00-6586b26cef47" + "WESTEUROPE:20150827T171350Z:0a7fbf81-a5a4-4331-ab64-7d81b894a9b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:39 GMT" + "Thu, 27 Aug 2015 17:13:50 GMT" ] }, "StatusCode": 200 @@ -766,16 +766,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14896" ], "x-ms-request-id": [ - "e750fb46-bf14-4d4e-96fd-05d648c10909" + "b8894015-4b5f-434a-b733-ba3e8ee24b0a" ], "x-ms-correlation-request-id": [ - "e750fb46-bf14-4d4e-96fd-05d648c10909" + "b8894015-4b5f-434a-b733-ba3e8ee24b0a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041343Z:e750fb46-bf14-4d4e-96fd-05d648c10909" + "WESTEUROPE:20150827T171354Z:b8894015-4b5f-434a-b733-ba3e8ee24b0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -784,7 +784,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:43 GMT" + "Thu, 27 Aug 2015 17:13:53 GMT" ] }, "StatusCode": 200 @@ -814,16 +814,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14893" ], "x-ms-request-id": [ - "538f322e-43c7-4f30-810d-17a160fcb1c1" + "33ea129b-4a35-4ce6-9993-812bf2500eba" ], "x-ms-correlation-request-id": [ - "538f322e-43c7-4f30-810d-17a160fcb1c1" + "33ea129b-4a35-4ce6-9993-812bf2500eba" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041346Z:538f322e-43c7-4f30-810d-17a160fcb1c1" + "WESTEUROPE:20150827T171357Z:33ea129b-4a35-4ce6-9993-812bf2500eba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -832,7 +832,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:46 GMT" + "Thu, 27 Aug 2015 17:13:57 GMT" ] }, "StatusCode": 200 @@ -847,10 +847,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-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "660" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -862,16 +862,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14891" ], "x-ms-request-id": [ - "f06b6164-5f40-4cf2-81b8-8a5f43ab3cd4" + "6ed35aa2-b690-4bb1-9afb-3db12a81ce34" ], "x-ms-correlation-request-id": [ - "f06b6164-5f40-4cf2-81b8-8a5f43ab3cd4" + "6ed35aa2-b690-4bb1-9afb-3db12a81ce34" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041350Z:f06b6164-5f40-4cf2-81b8-8a5f43ab3cd4" + "WESTEUROPE:20150827T171401Z:6ed35aa2-b690-4bb1-9afb-3db12a81ce34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -880,7 +880,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:49 GMT" + "Thu, 27 Aug 2015 17:14:00 GMT" ] }, "StatusCode": 200 @@ -895,10 +895,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-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "660" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -910,16 +910,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14889" ], "x-ms-request-id": [ - "d4bb84e6-eef6-4503-87dc-985dd3b5e5fc" + "7b6518ce-a880-4ef0-bc05-d7feb5d0bf48" ], "x-ms-correlation-request-id": [ - "d4bb84e6-eef6-4503-87dc-985dd3b5e5fc" + "7b6518ce-a880-4ef0-bc05-d7feb5d0bf48" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041353Z:d4bb84e6-eef6-4503-87dc-985dd3b5e5fc" + "WESTEUROPE:20150827T171405Z:7b6518ce-a880-4ef0-bc05-d7feb5d0bf48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -928,7 +928,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:52 GMT" + "Thu, 27 Aug 2015 17:14:04 GMT" ] }, "StatusCode": 200 @@ -943,10 +943,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:54.3558208Z\",\r\n \"duration\": \"PT5.1857307S\",\r\n \"trackingId\": \"777eaab8-aa80-4279-bed3-f9895eedb60b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2099" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -958,16 +958,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14887" ], "x-ms-request-id": [ - "68595648-8a33-4f93-8b45-90a8a0e5e50e" + "b34b82b1-a5b3-4e8e-9bb7-16e35b52e132" ], "x-ms-correlation-request-id": [ - "68595648-8a33-4f93-8b45-90a8a0e5e50e" + "b34b82b1-a5b3-4e8e-9bb7-16e35b52e132" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041357Z:68595648-8a33-4f93-8b45-90a8a0e5e50e" + "WESTEUROPE:20150827T171408Z:b34b82b1-a5b3-4e8e-9bb7-16e35b52e132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -976,7 +976,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:56 GMT" + "Thu, 27 Aug 2015 17:14:08 GMT" ] }, "StatusCode": 200 @@ -991,10 +991,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:54.3558208Z\",\r\n \"duration\": \"PT5.1857307S\",\r\n \"trackingId\": \"777eaab8-aa80-4279-bed3-f9895eedb60b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2099" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1006,16 +1006,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14885" ], "x-ms-request-id": [ - "4aafcf22-265b-401d-ae96-f37b5b592c74" + "115e7599-8bbe-41c5-9f55-34cba13e410e" ], "x-ms-correlation-request-id": [ - "4aafcf22-265b-401d-ae96-f37b5b592c74" + "115e7599-8bbe-41c5-9f55-34cba13e410e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041400Z:4aafcf22-265b-401d-ae96-f37b5b592c74" + "WESTEUROPE:20150827T171412Z:115e7599-8bbe-41c5-9f55-34cba13e410e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1024,7 +1024,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:59 GMT" + "Thu, 27 Aug 2015 17:14:11 GMT" ] }, "StatusCode": 200 @@ -1039,10 +1039,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:54.3558208Z\",\r\n \"duration\": \"PT5.1857307S\",\r\n \"trackingId\": \"777eaab8-aa80-4279-bed3-f9895eedb60b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2099" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1054,16 +1054,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14882" ], "x-ms-request-id": [ - "0a78dcff-fc6d-43a9-9006-cc2ada5de4a8" + "481c917e-8ecd-4e0e-8614-8316b2778c3f" ], "x-ms-correlation-request-id": [ - "0a78dcff-fc6d-43a9-9006-cc2ada5de4a8" + "481c917e-8ecd-4e0e-8614-8316b2778c3f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041404Z:0a78dcff-fc6d-43a9-9006-cc2ada5de4a8" + "WESTEUROPE:20150827T171416Z:481c917e-8ecd-4e0e-8614-8316b2778c3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1072,7 +1072,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:04 GMT" + "Thu, 27 Aug 2015 17:14:15 GMT" ] }, "StatusCode": 200 @@ -1087,10 +1087,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:54.3558208Z\",\r\n \"duration\": \"PT5.1857307S\",\r\n \"trackingId\": \"777eaab8-aa80-4279-bed3-f9895eedb60b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2099" + "663" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1102,16 +1102,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14880" ], "x-ms-request-id": [ - "bbb267dd-e06e-44dd-b2aa-e83b0da91e52" + "29ca4d19-fd65-4f7e-8568-3e80f79d1bb9" ], "x-ms-correlation-request-id": [ - "bbb267dd-e06e-44dd-b2aa-e83b0da91e52" + "29ca4d19-fd65-4f7e-8568-3e80f79d1bb9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041407Z:bbb267dd-e06e-44dd-b2aa-e83b0da91e52" + "WESTEUROPE:20150827T171419Z:29ca4d19-fd65-4f7e-8568-3e80f79d1bb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1120,7 +1120,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:07 GMT" + "Thu, 27 Aug 2015 17:14:19 GMT" ] }, "StatusCode": 200 @@ -1135,10 +1135,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:54.3558208Z\",\r\n \"duration\": \"PT5.1857307S\",\r\n \"trackingId\": \"777eaab8-aa80-4279-bed3-f9895eedb60b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2099" + "1389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1150,16 +1150,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14878" ], "x-ms-request-id": [ - "d28fd896-b08a-4cb5-96b8-c64ae397b442" + "81f9aa8c-17df-499d-b85b-e94543b46ad2" ], "x-ms-correlation-request-id": [ - "d28fd896-b08a-4cb5-96b8-c64ae397b442" + "81f9aa8c-17df-499d-b85b-e94543b46ad2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041411Z:d28fd896-b08a-4cb5-96b8-c64ae397b442" + "WESTEUROPE:20150827T171423Z:81f9aa8c-17df-499d-b85b-e94543b46ad2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1168,7 +1168,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:11 GMT" + "Thu, 27 Aug 2015 17:14:22 GMT" ] }, "StatusCode": 200 @@ -1183,10 +1183,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:54.3558208Z\",\r\n \"duration\": \"PT5.1857307S\",\r\n \"trackingId\": \"777eaab8-aa80-4279-bed3-f9895eedb60b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:26.8608635Z\",\r\n \"duration\": \"PT10.4071031S\",\r\n \"trackingId\": \"07a77f9a-55d0-4ff9-adf5-7d1e530233dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2099" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1198,16 +1198,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14876" ], "x-ms-request-id": [ - "efd9943a-7046-4fb5-84a3-195dc476e14d" + "9d1eb42a-cc55-4c3e-92af-0ac28e9a8f4f" ], "x-ms-correlation-request-id": [ - "efd9943a-7046-4fb5-84a3-195dc476e14d" + "9d1eb42a-cc55-4c3e-92af-0ac28e9a8f4f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041414Z:efd9943a-7046-4fb5-84a3-195dc476e14d" + "WESTEUROPE:20150827T171427Z:9d1eb42a-cc55-4c3e-92af-0ac28e9a8f4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1216,7 +1216,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:14 GMT" + "Thu, 27 Aug 2015 17:14:27 GMT" ] }, "StatusCode": 200 @@ -1231,10 +1231,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:54.3558208Z\",\r\n \"duration\": \"PT5.1857307S\",\r\n \"trackingId\": \"777eaab8-aa80-4279-bed3-f9895eedb60b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:26.8608635Z\",\r\n \"duration\": \"PT10.4071031S\",\r\n \"trackingId\": \"07a77f9a-55d0-4ff9-adf5-7d1e530233dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2099" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1246,16 +1246,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14874" ], "x-ms-request-id": [ - "ca2efdf8-c1df-4e87-97dc-54985004622a" + "2987d30a-ccfc-48f2-9f70-19b2c3ede92c" ], "x-ms-correlation-request-id": [ - "ca2efdf8-c1df-4e87-97dc-54985004622a" + "2987d30a-ccfc-48f2-9f70-19b2c3ede92c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041418Z:ca2efdf8-c1df-4e87-97dc-54985004622a" + "WESTEUROPE:20150827T171431Z:2987d30a-ccfc-48f2-9f70-19b2c3ede92c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1264,7 +1264,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:17 GMT" + "Thu, 27 Aug 2015 17:14:31 GMT" ] }, "StatusCode": 200 @@ -1279,10 +1279,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:54.3558208Z\",\r\n \"duration\": \"PT5.1857307S\",\r\n \"trackingId\": \"777eaab8-aa80-4279-bed3-f9895eedb60b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:26.8608635Z\",\r\n \"duration\": \"PT10.4071031S\",\r\n \"trackingId\": \"07a77f9a-55d0-4ff9-adf5-7d1e530233dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2099" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1294,16 +1294,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14872" ], "x-ms-request-id": [ - "29cd4d02-ea74-453c-85ff-645d78aa9998" + "34e4e75a-7dab-48bf-a31c-9e275e75b9ab" ], "x-ms-correlation-request-id": [ - "29cd4d02-ea74-453c-85ff-645d78aa9998" + "34e4e75a-7dab-48bf-a31c-9e275e75b9ab" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041421Z:29cd4d02-ea74-453c-85ff-645d78aa9998" + "WESTEUROPE:20150827T171435Z:34e4e75a-7dab-48bf-a31c-9e275e75b9ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1312,7 +1312,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:21 GMT" + "Thu, 27 Aug 2015 17:14:35 GMT" ] }, "StatusCode": 200 @@ -1327,10 +1327,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:54.3558208Z\",\r\n \"duration\": \"PT5.1857307S\",\r\n \"trackingId\": \"777eaab8-aa80-4279-bed3-f9895eedb60b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:26.8608635Z\",\r\n \"duration\": \"PT10.4071031S\",\r\n \"trackingId\": \"07a77f9a-55d0-4ff9-adf5-7d1e530233dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2099" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1342,16 +1342,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14870" ], "x-ms-request-id": [ - "60482556-473e-437a-86af-4106b797e88c" + "5cb4cec8-8f16-44c5-835d-48eefbab6abe" ], "x-ms-correlation-request-id": [ - "60482556-473e-437a-86af-4106b797e88c" + "5cb4cec8-8f16-44c5-835d-48eefbab6abe" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041425Z:60482556-473e-437a-86af-4106b797e88c" + "WESTEUROPE:20150827T171439Z:5cb4cec8-8f16-44c5-835d-48eefbab6abe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1360,7 +1360,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:24 GMT" + "Thu, 27 Aug 2015 17:14:39 GMT" ] }, "StatusCode": 200 @@ -1375,10 +1375,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:14:26.9556023Z\",\r\n \"duration\": \"PT37.7855122S\",\r\n \"trackingId\": \"d3c96ad9-8739-448d-b210-73e40392560d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:26.8608635Z\",\r\n \"duration\": \"PT10.4071031S\",\r\n \"trackingId\": \"07a77f9a-55d0-4ff9-adf5-7d1e530233dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1390,16 +1390,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14868" ], "x-ms-request-id": [ - "e643e727-b0f5-4070-b60c-41e867a4f3fc" + "f9d1e36e-e999-4ada-9d6e-da89a485f4dd" ], "x-ms-correlation-request-id": [ - "e643e727-b0f5-4070-b60c-41e867a4f3fc" + "f9d1e36e-e999-4ada-9d6e-da89a485f4dd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041428Z:e643e727-b0f5-4070-b60c-41e867a4f3fc" + "WESTEUROPE:20150827T171443Z:f9d1e36e-e999-4ada-9d6e-da89a485f4dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1408,7 +1408,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:28 GMT" + "Thu, 27 Aug 2015 17:14:43 GMT" ] }, "StatusCode": 200 @@ -1423,10 +1423,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:14:26.9556023Z\",\r\n \"duration\": \"PT37.7855122S\",\r\n \"trackingId\": \"d3c96ad9-8739-448d-b210-73e40392560d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:26.8608635Z\",\r\n \"duration\": \"PT10.4071031S\",\r\n \"trackingId\": \"07a77f9a-55d0-4ff9-adf5-7d1e530233dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1438,16 +1438,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14866" ], "x-ms-request-id": [ - "7654b25f-d576-4f9b-81c4-6768ee0fff83" + "77907af6-604e-4360-9764-ce75d0288d00" ], "x-ms-correlation-request-id": [ - "7654b25f-d576-4f9b-81c4-6768ee0fff83" + "77907af6-604e-4360-9764-ce75d0288d00" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041432Z:7654b25f-d576-4f9b-81c4-6768ee0fff83" + "WESTEUROPE:20150827T171447Z:77907af6-604e-4360-9764-ce75d0288d00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1456,7 +1456,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:31 GMT" + "Thu, 27 Aug 2015 17:14:47 GMT" ] }, "StatusCode": 200 @@ -1471,10 +1471,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:14:26.9556023Z\",\r\n \"duration\": \"PT37.7855122S\",\r\n \"trackingId\": \"d3c96ad9-8739-448d-b210-73e40392560d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:26.8608635Z\",\r\n \"duration\": \"PT10.4071031S\",\r\n \"trackingId\": \"07a77f9a-55d0-4ff9-adf5-7d1e530233dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1486,16 +1486,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14864" ], "x-ms-request-id": [ - "e90b37b2-66a0-4bc0-83f4-2bc2c94b35e1" + "95e1f188-5c28-4c87-8793-184611207766" ], "x-ms-correlation-request-id": [ - "e90b37b2-66a0-4bc0-83f4-2bc2c94b35e1" + "95e1f188-5c28-4c87-8793-184611207766" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041435Z:e90b37b2-66a0-4bc0-83f4-2bc2c94b35e1" + "WESTEUROPE:20150827T171451Z:95e1f188-5c28-4c87-8793-184611207766" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1504,7 +1504,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:35 GMT" + "Thu, 27 Aug 2015 17:14:51 GMT" ] }, "StatusCode": 200 @@ -1519,10 +1519,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:14:26.9556023Z\",\r\n \"duration\": \"PT37.7855122S\",\r\n \"trackingId\": \"d3c96ad9-8739-448d-b210-73e40392560d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:26.8608635Z\",\r\n \"duration\": \"PT10.4071031S\",\r\n \"trackingId\": \"07a77f9a-55d0-4ff9-adf5-7d1e530233dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1534,16 +1534,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14861" ], "x-ms-request-id": [ - "175fe28d-cf40-44c6-8131-6368b04eb376" + "fe87e009-7b1b-4a37-848a-a75e40163c03" ], "x-ms-correlation-request-id": [ - "175fe28d-cf40-44c6-8131-6368b04eb376" + "fe87e009-7b1b-4a37-848a-a75e40163c03" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041439Z:175fe28d-cf40-44c6-8131-6368b04eb376" + "WESTEUROPE:20150827T171455Z:fe87e009-7b1b-4a37-848a-a75e40163c03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1552,7 +1552,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:38 GMT" + "Thu, 27 Aug 2015 17:14:54 GMT" ] }, "StatusCode": 200 @@ -1567,10 +1567,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:14:26.9556023Z\",\r\n \"duration\": \"PT37.7855122S\",\r\n \"trackingId\": \"d3c96ad9-8739-448d-b210-73e40392560d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:26.8608635Z\",\r\n \"duration\": \"PT10.4071031S\",\r\n \"trackingId\": \"07a77f9a-55d0-4ff9-adf5-7d1e530233dc\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1582,16 +1582,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14859" ], "x-ms-request-id": [ - "280dd962-79e4-4363-98df-a4400901b0dd" + "76a88518-8491-44b0-9878-3f3743530599" ], "x-ms-correlation-request-id": [ - "280dd962-79e4-4363-98df-a4400901b0dd" + "76a88518-8491-44b0-9878-3f3743530599" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041442Z:280dd962-79e4-4363-98df-a4400901b0dd" + "WESTEUROPE:20150827T171459Z:76a88518-8491-44b0-9878-3f3743530599" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1600,7 +1600,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:42 GMT" + "Thu, 27 Aug 2015 17:14:58 GMT" ] }, "StatusCode": 200 @@ -1615,10 +1615,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:14:26.9556023Z\",\r\n \"duration\": \"PT37.7855122S\",\r\n \"trackingId\": \"d3c96ad9-8739-448d-b210-73e40392560d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:59.7473285Z\",\r\n \"duration\": \"PT43.2935681S\",\r\n \"trackingId\": \"d9f9a0ac-af03-467d-8698-692f6c7a4cbb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1630,16 +1630,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14861" ], "x-ms-request-id": [ - "cde0786c-3933-4a8d-aed4-f73ce747e75d" + "fe079700-34a6-47bd-9577-320483790ec0" ], "x-ms-correlation-request-id": [ - "cde0786c-3933-4a8d-aed4-f73ce747e75d" + "fe079700-34a6-47bd-9577-320483790ec0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041446Z:cde0786c-3933-4a8d-aed4-f73ce747e75d" + "WESTEUROPE:20150827T171503Z:fe079700-34a6-47bd-9577-320483790ec0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1648,7 +1648,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:45 GMT" + "Thu, 27 Aug 2015 17:15:02 GMT" ] }, "StatusCode": 200 @@ -1663,10 +1663,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:14:26.9556023Z\",\r\n \"duration\": \"PT37.7855122S\",\r\n \"trackingId\": \"d3c96ad9-8739-448d-b210-73e40392560d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:59.7473285Z\",\r\n \"duration\": \"PT43.2935681S\",\r\n \"trackingId\": \"d9f9a0ac-af03-467d-8698-692f6c7a4cbb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1678,16 +1678,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14859" ], "x-ms-request-id": [ - "a01b9456-5fa5-4626-bd86-a00b4d0894c1" + "605d1dad-587b-4cfd-afbc-23724d94edcf" ], "x-ms-correlation-request-id": [ - "a01b9456-5fa5-4626-bd86-a00b4d0894c1" + "605d1dad-587b-4cfd-afbc-23724d94edcf" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041449Z:a01b9456-5fa5-4626-bd86-a00b4d0894c1" + "WESTEUROPE:20150827T171507Z:605d1dad-587b-4cfd-afbc-23724d94edcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1696,7 +1696,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:48 GMT" + "Thu, 27 Aug 2015 17:15:07 GMT" ] }, "StatusCode": 200 @@ -1711,10 +1711,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:14:26.9556023Z\",\r\n \"duration\": \"PT37.7855122S\",\r\n \"trackingId\": \"d3c96ad9-8739-448d-b210-73e40392560d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:59.7473285Z\",\r\n \"duration\": \"PT43.2935681S\",\r\n \"trackingId\": \"d9f9a0ac-af03-467d-8698-692f6c7a4cbb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1726,16 +1726,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14857" ], "x-ms-request-id": [ - "e1a6e823-c9b1-458e-b3d0-a02ea1604f7b" + "5a58f273-bd89-4213-aaf1-792807fab28a" ], "x-ms-correlation-request-id": [ - "e1a6e823-c9b1-458e-b3d0-a02ea1604f7b" + "5a58f273-bd89-4213-aaf1-792807fab28a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041453Z:e1a6e823-c9b1-458e-b3d0-a02ea1604f7b" + "WESTEUROPE:20150827T171511Z:5a58f273-bd89-4213-aaf1-792807fab28a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1744,7 +1744,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:53 GMT" + "Thu, 27 Aug 2015 17:15:11 GMT" ] }, "StatusCode": 200 @@ -1759,10 +1759,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:14:26.9556023Z\",\r\n \"duration\": \"PT37.7855122S\",\r\n \"trackingId\": \"d3c96ad9-8739-448d-b210-73e40392560d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:59.7473285Z\",\r\n \"duration\": \"PT43.2935681S\",\r\n \"trackingId\": \"d9f9a0ac-af03-467d-8698-692f6c7a4cbb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1774,16 +1774,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14855" ], "x-ms-request-id": [ - "4cf06027-e03d-4319-86c7-0656b0144d20" + "1cbdb940-f3c2-423d-86c4-df17a6573272" ], "x-ms-correlation-request-id": [ - "4cf06027-e03d-4319-86c7-0656b0144d20" + "1cbdb940-f3c2-423d-86c4-df17a6573272" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041456Z:4cf06027-e03d-4319-86c7-0656b0144d20" + "WESTEUROPE:20150827T171515Z:1cbdb940-f3c2-423d-86c4-df17a6573272" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1792,7 +1792,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:56 GMT" + "Thu, 27 Aug 2015 17:15:14 GMT" ] }, "StatusCode": 200 @@ -1807,10 +1807,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:14:58.7609524Z\",\r\n \"duration\": \"PT1M9.5908623S\",\r\n \"trackingId\": \"bf466189-6ac1-4efe-93b9-8142ebdb975e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:59.7473285Z\",\r\n \"duration\": \"PT43.2935681S\",\r\n \"trackingId\": \"d9f9a0ac-af03-467d-8698-692f6c7a4cbb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1822,16 +1822,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14853" ], "x-ms-request-id": [ - "701ee8f0-b7ee-47d2-b0dd-782850b4d213" + "8574cb82-5bcd-4fb9-8e7b-6d153328dc79" ], "x-ms-correlation-request-id": [ - "701ee8f0-b7ee-47d2-b0dd-782850b4d213" + "8574cb82-5bcd-4fb9-8e7b-6d153328dc79" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041500Z:701ee8f0-b7ee-47d2-b0dd-782850b4d213" + "WESTEUROPE:20150827T171519Z:8574cb82-5bcd-4fb9-8e7b-6d153328dc79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1840,7 +1840,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:00 GMT" + "Thu, 27 Aug 2015 17:15:18 GMT" ] }, "StatusCode": 200 @@ -1855,10 +1855,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:14:58.7609524Z\",\r\n \"duration\": \"PT1M9.5908623S\",\r\n \"trackingId\": \"bf466189-6ac1-4efe-93b9-8142ebdb975e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:59.7473285Z\",\r\n \"duration\": \"PT43.2935681S\",\r\n \"trackingId\": \"d9f9a0ac-af03-467d-8698-692f6c7a4cbb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1870,16 +1870,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14851" ], "x-ms-request-id": [ - "b4570976-04dc-457c-8dd6-21d9c3a72e5e" + "ef496a62-ac93-468c-8be3-1b189ca17f77" ], "x-ms-correlation-request-id": [ - "b4570976-04dc-457c-8dd6-21d9c3a72e5e" + "ef496a62-ac93-468c-8be3-1b189ca17f77" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041503Z:b4570976-04dc-457c-8dd6-21d9c3a72e5e" + "WESTEUROPE:20150827T171523Z:ef496a62-ac93-468c-8be3-1b189ca17f77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1888,7 +1888,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:03 GMT" + "Thu, 27 Aug 2015 17:15:22 GMT" ] }, "StatusCode": 200 @@ -1903,7 +1903,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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:15:04.9957312Z\",\r\n \"duration\": \"PT1M15.8256411S\",\r\n \"trackingId\": \"a99149a9-e1a5-4873-99b8-0b6c0cc09ec9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:53.7608001Z\",\r\n \"duration\": \"PT4.5841355S\",\r\n \"trackingId\": \"b8bfdf45-7d1a-4474-a811-6ba06229967b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:13:49.07208Z\",\r\n \"duration\": \"PT42.6744354S\",\r\n \"trackingId\": \"ea8208da-d99c-4df8-bb6b-bb3ce6fc8ed2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:59.7473285Z\",\r\n \"duration\": \"PT43.2935681S\",\r\n \"trackingId\": \"d9f9a0ac-af03-467d-8698-692f6c7a4cbb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2103" @@ -1918,16 +1918,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14849" ], "x-ms-request-id": [ - "190230fd-a725-45a4-9fe9-2ba6000291dd" + "69bf2ec2-c66f-4d92-ae2d-4fda8360562c" ], "x-ms-correlation-request-id": [ - "190230fd-a725-45a4-9fe9-2ba6000291dd" + "69bf2ec2-c66f-4d92-ae2d-4fda8360562c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041507Z:190230fd-a725-45a4-9fe9-2ba6000291dd" + "WESTEUROPE:20150827T171527Z:69bf2ec2-c66f-4d92-ae2d-4fda8360562c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1936,7 +1936,199 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:06 GMT" + "Thu, 27 Aug 2015 17:15:26 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:14:59.7473285Z\",\r\n \"duration\": \"PT43.2935681S\",\r\n \"trackingId\": \"d9f9a0ac-af03-467d-8698-692f6c7a4cbb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14847" + ], + "x-ms-request-id": [ + "56dad70c-7e44-4510-b0f1-cdbe72ed1cab" + ], + "x-ms-correlation-request-id": [ + "56dad70c-7e44-4510-b0f1-cdbe72ed1cab" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T171531Z:56dad70c-7e44-4510-b0f1-cdbe72ed1cab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:15:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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-rg40222/deployments/sql-ddm-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:15:32.4109282Z\",\r\n \"duration\": \"PT1M15.9571678S\",\r\n \"trackingId\": \"e1b8c820-2e62-4da4-b90a-8c0da73a5724\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/3062FBA750C3194E\",\r\n \"operationId\": \"3062FBA750C3194E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:20.6007016Z\",\r\n \"duration\": \"PT4.1402354S\",\r\n \"trackingId\": \"507e273e-ff64-487d-ac07-0a70e356b9d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:14:16.3122095Z\",\r\n \"duration\": \"PT1M3.0504637S\",\r\n \"trackingId\": \"a3de505f-7457-4f65-bfb6-8079f9e800ff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14845" + ], + "x-ms-request-id": [ + "34de3472-43b2-43e8-a44b-c6f486a35b89" + ], + "x-ms-correlation-request-id": [ + "34de3472-43b2-43e8-a44b-c6f486a35b89" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T171535Z:34de3472-43b2-43e8-a44b-c6f486a35b89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:15:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/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": [ + "14918" + ], + "x-ms-request-id": [ + "d1952c00-7aa2-4da9-a326-02e1b9906b69" + ], + "x-ms-correlation-request-id": [ + "d1952c00-7aa2-4da9-a326-02e1b9906b69" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T171314Z:d1952c00-7aa2-4da9-a326-02e1b9906b69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:13:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/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": [ + "14916" + ], + "x-ms-request-id": [ + "ae237012-0af6-4882-bbe9-c070d03c80c1" + ], + "x-ms-correlation-request-id": [ + "ae237012-0af6-4882-bbe9-c070d03c80c1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T171318Z:ae237012-0af6-4882-bbe9-c070d03c80c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:13:17 GMT" ] }, "StatusCode": 200 @@ -1951,7 +2143,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -1966,16 +2158,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14914" ], "x-ms-request-id": [ - "fea2695b-3c18-457c-93c5-68bbc3515ecd" + "1598184e-24f3-4ee9-bb42-fcd7c115ada1" ], "x-ms-correlation-request-id": [ - "fea2695b-3c18-457c-93c5-68bbc3515ecd" + "1598184e-24f3-4ee9-bb42-fcd7c115ada1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041307Z:fea2695b-3c18-457c-93c5-68bbc3515ecd" + "WESTEUROPE:20150827T171321Z:1598184e-24f3-4ee9-bb42-fcd7c115ada1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1984,7 +2176,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:06 GMT" + "Thu, 27 Aug 2015 17:13:21 GMT" ] }, "StatusCode": 200 @@ -1999,7 +2191,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2014,16 +2206,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14911" ], "x-ms-request-id": [ - "e5e03272-7230-4d0e-8822-c98b891eab70" + "0482bb5d-bd5c-4106-95a7-79784a336cb6" ], "x-ms-correlation-request-id": [ - "e5e03272-7230-4d0e-8822-c98b891eab70" + "0482bb5d-bd5c-4106-95a7-79784a336cb6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041310Z:e5e03272-7230-4d0e-8822-c98b891eab70" + "WESTEUROPE:20150827T171325Z:0482bb5d-bd5c-4106-95a7-79784a336cb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2032,7 +2224,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:10 GMT" + "Thu, 27 Aug 2015 17:13:24 GMT" ] }, "StatusCode": 200 @@ -2047,7 +2239,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2062,16 +2254,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14909" ], "x-ms-request-id": [ - "0f94089f-a591-4532-8d89-922892f8a632" + "faa51f8a-ad95-4798-8df7-2982d1a73ebc" ], "x-ms-correlation-request-id": [ - "0f94089f-a591-4532-8d89-922892f8a632" + "faa51f8a-ad95-4798-8df7-2982d1a73ebc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041314Z:0f94089f-a591-4532-8d89-922892f8a632" + "WESTEUROPE:20150827T171329Z:faa51f8a-ad95-4798-8df7-2982d1a73ebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2080,7 +2272,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:13 GMT" + "Thu, 27 Aug 2015 17:13:28 GMT" ] }, "StatusCode": 200 @@ -2095,7 +2287,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2110,16 +2302,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14907" ], "x-ms-request-id": [ - "65bf763a-6587-4b67-80c5-0dcd9b8dc49f" + "9899ee44-6c75-4c1f-9af3-7eaddf3d549c" ], "x-ms-correlation-request-id": [ - "65bf763a-6587-4b67-80c5-0dcd9b8dc49f" + "9899ee44-6c75-4c1f-9af3-7eaddf3d549c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041317Z:65bf763a-6587-4b67-80c5-0dcd9b8dc49f" + "WESTEUROPE:20150827T171332Z:9899ee44-6c75-4c1f-9af3-7eaddf3d549c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2128,7 +2320,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:16 GMT" + "Thu, 27 Aug 2015 17:13:31 GMT" ] }, "StatusCode": 200 @@ -2143,7 +2335,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2158,16 +2350,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14905" ], "x-ms-request-id": [ - "47dbce94-fcb2-4216-878e-c75a6f5fa12d" + "02286ab8-639d-4aaf-9b5b-410afe886cd1" ], "x-ms-correlation-request-id": [ - "47dbce94-fcb2-4216-878e-c75a6f5fa12d" + "02286ab8-639d-4aaf-9b5b-410afe886cd1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041320Z:47dbce94-fcb2-4216-878e-c75a6f5fa12d" + "WESTEUROPE:20150827T171336Z:02286ab8-639d-4aaf-9b5b-410afe886cd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2176,7 +2368,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:19 GMT" + "Thu, 27 Aug 2015 17:13:35 GMT" ] }, "StatusCode": 200 @@ -2191,7 +2383,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2206,16 +2398,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14903" ], "x-ms-request-id": [ - "1c4e6c0d-e52e-41bc-accc-b401ac060b90" + "e5f98315-2738-4f45-916a-2bea8656ac19" ], "x-ms-correlation-request-id": [ - "1c4e6c0d-e52e-41bc-accc-b401ac060b90" + "e5f98315-2738-4f45-916a-2bea8656ac19" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041324Z:1c4e6c0d-e52e-41bc-accc-b401ac060b90" + "WESTEUROPE:20150827T171340Z:e5f98315-2738-4f45-916a-2bea8656ac19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2224,7 +2416,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:24 GMT" + "Thu, 27 Aug 2015 17:13:40 GMT" ] }, "StatusCode": 200 @@ -2239,7 +2431,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2254,16 +2446,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14901" ], "x-ms-request-id": [ - "2ed57769-ea76-4b51-be25-cf8467223155" + "c51f5f36-ac09-470d-96b6-6610f8189e96" ], "x-ms-correlation-request-id": [ - "2ed57769-ea76-4b51-be25-cf8467223155" + "c51f5f36-ac09-470d-96b6-6610f8189e96" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041327Z:2ed57769-ea76-4b51-be25-cf8467223155" + "WESTEUROPE:20150827T171343Z:c51f5f36-ac09-470d-96b6-6610f8189e96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2272,7 +2464,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:27 GMT" + "Thu, 27 Aug 2015 17:13:43 GMT" ] }, "StatusCode": 200 @@ -2287,7 +2479,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2302,16 +2494,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14899" ], "x-ms-request-id": [ - "18cbf58d-447f-45ca-abe4-4af751ee96c2" + "60a42f04-7ea7-4f42-b890-a132d203130f" ], "x-ms-correlation-request-id": [ - "18cbf58d-447f-45ca-abe4-4af751ee96c2" + "60a42f04-7ea7-4f42-b890-a132d203130f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041330Z:18cbf58d-447f-45ca-abe4-4af751ee96c2" + "WESTEUROPE:20150827T171347Z:60a42f04-7ea7-4f42-b890-a132d203130f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2320,7 +2512,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:30 GMT" + "Thu, 27 Aug 2015 17:13:47 GMT" ] }, "StatusCode": 200 @@ -2335,7 +2527,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2350,16 +2542,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14897" ], "x-ms-request-id": [ - "8e8451e7-daf1-4510-a444-1b4ee7bc5339" + "85d0ff26-29ea-475f-ada1-e03c0d118625" ], "x-ms-correlation-request-id": [ - "8e8451e7-daf1-4510-a444-1b4ee7bc5339" + "85d0ff26-29ea-475f-ada1-e03c0d118625" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041334Z:8e8451e7-daf1-4510-a444-1b4ee7bc5339" + "WESTEUROPE:20150827T171351Z:85d0ff26-29ea-475f-ada1-e03c0d118625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2368,7 +2560,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:33 GMT" + "Thu, 27 Aug 2015 17:13:50 GMT" ] }, "StatusCode": 200 @@ -2383,7 +2575,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2398,16 +2590,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14894" ], "x-ms-request-id": [ - "7d356f97-bc32-4f07-86a3-951ce4b80eb1" + "40fa85d4-91ed-46e7-b6a5-2b9bb5c48b7e" ], "x-ms-correlation-request-id": [ - "7d356f97-bc32-4f07-86a3-951ce4b80eb1" + "40fa85d4-91ed-46e7-b6a5-2b9bb5c48b7e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041337Z:7d356f97-bc32-4f07-86a3-951ce4b80eb1" + "WESTEUROPE:20150827T171354Z:40fa85d4-91ed-46e7-b6a5-2b9bb5c48b7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2416,7 +2608,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:37 GMT" + "Thu, 27 Aug 2015 17:13:54 GMT" ] }, "StatusCode": 200 @@ -2431,7 +2623,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2446,16 +2638,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14892" ], "x-ms-request-id": [ - "baedd3f7-fdd2-429c-b2a1-a3c219ea3727" + "b2f4a7b2-ff99-469c-8cf4-4166f3aa8d1b" ], "x-ms-correlation-request-id": [ - "baedd3f7-fdd2-429c-b2a1-a3c219ea3727" + "b2f4a7b2-ff99-469c-8cf4-4166f3aa8d1b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041340Z:baedd3f7-fdd2-429c-b2a1-a3c219ea3727" + "WESTEUROPE:20150827T171358Z:b2f4a7b2-ff99-469c-8cf4-4166f3aa8d1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2464,7 +2656,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:40 GMT" + "Thu, 27 Aug 2015 17:13:58 GMT" ] }, "StatusCode": 200 @@ -2479,7 +2671,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2494,16 +2686,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14890" ], "x-ms-request-id": [ - "a8d89587-48e5-4a91-b1cf-d3062f5b7f4e" + "9719ef6c-355e-4024-90ce-1c18dde66559" ], "x-ms-correlation-request-id": [ - "a8d89587-48e5-4a91-b1cf-d3062f5b7f4e" + "9719ef6c-355e-4024-90ce-1c18dde66559" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041344Z:a8d89587-48e5-4a91-b1cf-d3062f5b7f4e" + "WESTEUROPE:20150827T171402Z:9719ef6c-355e-4024-90ce-1c18dde66559" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2512,7 +2704,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:43 GMT" + "Thu, 27 Aug 2015 17:14:01 GMT" ] }, "StatusCode": 200 @@ -2527,7 +2719,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2542,16 +2734,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14888" ], "x-ms-request-id": [ - "c199c557-c646-45d4-858f-5e604191b008" + "70d28fb9-0fb0-4b2e-a1e9-ac9a1138c63d" ], "x-ms-correlation-request-id": [ - "c199c557-c646-45d4-858f-5e604191b008" + "70d28fb9-0fb0-4b2e-a1e9-ac9a1138c63d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041347Z:c199c557-c646-45d4-858f-5e604191b008" + "WESTEUROPE:20150827T171405Z:70d28fb9-0fb0-4b2e-a1e9-ac9a1138c63d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2560,7 +2752,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:46 GMT" + "Thu, 27 Aug 2015 17:14:05 GMT" ] }, "StatusCode": 200 @@ -2575,7 +2767,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2590,16 +2782,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14886" ], "x-ms-request-id": [ - "e8c54bbe-1858-4113-a4e0-bd6fe670541d" + "c420d32b-8de7-493d-a55e-d3fbd4252c16" ], "x-ms-correlation-request-id": [ - "e8c54bbe-1858-4113-a4e0-bd6fe670541d" + "c420d32b-8de7-493d-a55e-d3fbd4252c16" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041350Z:e8c54bbe-1858-4113-a4e0-bd6fe670541d" + "WESTEUROPE:20150827T171409Z:c420d32b-8de7-493d-a55e-d3fbd4252c16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2608,7 +2800,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:50 GMT" + "Thu, 27 Aug 2015 17:14:09 GMT" ] }, "StatusCode": 200 @@ -2623,7 +2815,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2638,16 +2830,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14884" ], "x-ms-request-id": [ - "12f961b9-b50b-4a4f-ba62-30a6d6ced175" + "ed672725-7a96-46dc-b29f-783e6eb71289" ], "x-ms-correlation-request-id": [ - "12f961b9-b50b-4a4f-ba62-30a6d6ced175" + "ed672725-7a96-46dc-b29f-783e6eb71289" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041354Z:12f961b9-b50b-4a4f-ba62-30a6d6ced175" + "WESTEUROPE:20150827T171413Z:ed672725-7a96-46dc-b29f-783e6eb71289" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2656,7 +2848,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:53 GMT" + "Thu, 27 Aug 2015 17:14:12 GMT" ] }, "StatusCode": 200 @@ -2671,7 +2863,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2686,16 +2878,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14881" ], "x-ms-request-id": [ - "5ff99fad-b8de-4ba8-99e4-ca7b50d8d247" + "2c1f7cd1-ae74-424d-8af7-7a29654695e9" ], "x-ms-correlation-request-id": [ - "5ff99fad-b8de-4ba8-99e4-ca7b50d8d247" + "2c1f7cd1-ae74-424d-8af7-7a29654695e9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041357Z:5ff99fad-b8de-4ba8-99e4-ca7b50d8d247" + "WESTEUROPE:20150827T171416Z:2c1f7cd1-ae74-424d-8af7-7a29654695e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2704,7 +2896,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:13:57 GMT" + "Thu, 27 Aug 2015 17:14:16 GMT" ] }, "StatusCode": 200 @@ -2719,7 +2911,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2734,16 +2926,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14879" ], "x-ms-request-id": [ - "7086bd29-5885-4571-865d-0594a4e2dc70" + "e9121a26-181e-4442-b8a3-cb0e06386f4f" ], "x-ms-correlation-request-id": [ - "7086bd29-5885-4571-865d-0594a4e2dc70" + "e9121a26-181e-4442-b8a3-cb0e06386f4f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041401Z:7086bd29-5885-4571-865d-0594a4e2dc70" + "WESTEUROPE:20150827T171420Z:e9121a26-181e-4442-b8a3-cb0e06386f4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2752,7 +2944,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:00 GMT" + "Thu, 27 Aug 2015 17:14:19 GMT" ] }, "StatusCode": 200 @@ -2767,7 +2959,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2782,16 +2974,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14877" ], "x-ms-request-id": [ - "4a1e5723-2cb5-400a-bc0a-b58887228e67" + "bf101500-7e8a-419a-8e67-9216a4686b4b" ], "x-ms-correlation-request-id": [ - "4a1e5723-2cb5-400a-bc0a-b58887228e67" + "bf101500-7e8a-419a-8e67-9216a4686b4b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041404Z:4a1e5723-2cb5-400a-bc0a-b58887228e67" + "WESTEUROPE:20150827T171424Z:bf101500-7e8a-419a-8e67-9216a4686b4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,7 +2992,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:04 GMT" + "Thu, 27 Aug 2015 17:14:23 GMT" ] }, "StatusCode": 200 @@ -2815,7 +3007,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2830,16 +3022,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14875" ], "x-ms-request-id": [ - "4c12eb05-ee0a-4fa6-8b4f-3aa3f0b50677" + "610173e4-bc9b-46b7-adcf-166581b48842" ], "x-ms-correlation-request-id": [ - "4c12eb05-ee0a-4fa6-8b4f-3aa3f0b50677" + "610173e4-bc9b-46b7-adcf-166581b48842" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041408Z:4c12eb05-ee0a-4fa6-8b4f-3aa3f0b50677" + "WESTEUROPE:20150827T171428Z:610173e4-bc9b-46b7-adcf-166581b48842" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2848,7 +3040,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:08 GMT" + "Thu, 27 Aug 2015 17:14:28 GMT" ] }, "StatusCode": 200 @@ -2863,7 +3055,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2878,16 +3070,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14873" ], "x-ms-request-id": [ - "a37b62db-baac-4b91-9925-dc21a8f78cb9" + "8ae16f8a-7667-4d09-a98b-52aa0fd88cef" ], "x-ms-correlation-request-id": [ - "a37b62db-baac-4b91-9925-dc21a8f78cb9" + "8ae16f8a-7667-4d09-a98b-52aa0fd88cef" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041411Z:a37b62db-baac-4b91-9925-dc21a8f78cb9" + "WESTEUROPE:20150827T171432Z:8ae16f8a-7667-4d09-a98b-52aa0fd88cef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2896,7 +3088,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:11 GMT" + "Thu, 27 Aug 2015 17:14:32 GMT" ] }, "StatusCode": 200 @@ -2911,7 +3103,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2926,16 +3118,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14871" ], "x-ms-request-id": [ - "8ae33bd0-d89c-442f-9576-a28d9f9c3613" + "cfd8c492-6eb5-44e3-9bd9-4780a657b56f" ], "x-ms-correlation-request-id": [ - "8ae33bd0-d89c-442f-9576-a28d9f9c3613" + "cfd8c492-6eb5-44e3-9bd9-4780a657b56f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041415Z:8ae33bd0-d89c-442f-9576-a28d9f9c3613" + "WESTEUROPE:20150827T171436Z:cfd8c492-6eb5-44e3-9bd9-4780a657b56f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2944,7 +3136,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:15 GMT" + "Thu, 27 Aug 2015 17:14:36 GMT" ] }, "StatusCode": 200 @@ -2959,7 +3151,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2974,16 +3166,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14869" ], "x-ms-request-id": [ - "ae95b5b3-adc3-4120-a1bb-87b7cb343aa8" + "67cadd4b-459c-4276-b723-e1e46c821631" ], "x-ms-correlation-request-id": [ - "ae95b5b3-adc3-4120-a1bb-87b7cb343aa8" + "67cadd4b-459c-4276-b723-e1e46c821631" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041418Z:ae95b5b3-adc3-4120-a1bb-87b7cb343aa8" + "WESTEUROPE:20150827T171440Z:67cadd4b-459c-4276-b723-e1e46c821631" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2992,7 +3184,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:18 GMT" + "Thu, 27 Aug 2015 17:14:40 GMT" ] }, "StatusCode": 200 @@ -3007,7 +3199,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3022,16 +3214,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14867" ], "x-ms-request-id": [ - "30ec00d2-ce88-46c3-92d1-08f793010c9e" + "788481e8-c1e4-45f8-b08c-b7b2a46743b3" ], "x-ms-correlation-request-id": [ - "30ec00d2-ce88-46c3-92d1-08f793010c9e" + "788481e8-c1e4-45f8-b08c-b7b2a46743b3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041422Z:30ec00d2-ce88-46c3-92d1-08f793010c9e" + "WESTEUROPE:20150827T171444Z:788481e8-c1e4-45f8-b08c-b7b2a46743b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3040,7 +3232,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:21 GMT" + "Thu, 27 Aug 2015 17:14:43 GMT" ] }, "StatusCode": 200 @@ -3055,7 +3247,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3070,16 +3262,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14865" ], "x-ms-request-id": [ - "b18d00f8-f4fa-4f21-abcb-d095219132f6" + "89792fb9-4282-46c1-9870-cbed59075566" ], "x-ms-correlation-request-id": [ - "b18d00f8-f4fa-4f21-abcb-d095219132f6" + "89792fb9-4282-46c1-9870-cbed59075566" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041426Z:b18d00f8-f4fa-4f21-abcb-d095219132f6" + "WESTEUROPE:20150827T171448Z:89792fb9-4282-46c1-9870-cbed59075566" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3088,7 +3280,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:25 GMT" + "Thu, 27 Aug 2015 17:14:47 GMT" ] }, "StatusCode": 200 @@ -3103,7 +3295,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3118,16 +3310,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14863" ], "x-ms-request-id": [ - "90f6771f-1062-4942-97fc-6bc5321234e5" + "947ec597-4127-4f32-8ea5-d976e1360564" ], "x-ms-correlation-request-id": [ - "90f6771f-1062-4942-97fc-6bc5321234e5" + "947ec597-4127-4f32-8ea5-d976e1360564" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041429Z:90f6771f-1062-4942-97fc-6bc5321234e5" + "WESTEUROPE:20150827T171452Z:947ec597-4127-4f32-8ea5-d976e1360564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3136,7 +3328,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:28 GMT" + "Thu, 27 Aug 2015 17:14:51 GMT" ] }, "StatusCode": 200 @@ -3151,7 +3343,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3166,16 +3358,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14860" ], "x-ms-request-id": [ - "1314208c-5b0e-462c-8561-fdcb5c4d66c5" + "a73aa1f7-7685-4ed7-9adc-213d6ca85807" ], "x-ms-correlation-request-id": [ - "1314208c-5b0e-462c-8561-fdcb5c4d66c5" + "a73aa1f7-7685-4ed7-9adc-213d6ca85807" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041432Z:1314208c-5b0e-462c-8561-fdcb5c4d66c5" + "WESTEUROPE:20150827T171456Z:a73aa1f7-7685-4ed7-9adc-213d6ca85807" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3184,7 +3376,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:32 GMT" + "Thu, 27 Aug 2015 17:14:55 GMT" ] }, "StatusCode": 200 @@ -3199,7 +3391,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3214,16 +3406,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14858" ], "x-ms-request-id": [ - "475fd34a-6a68-45bc-8b19-a3395c56c5a3" + "6bf813ef-b353-429e-a49f-2515f479142c" ], "x-ms-correlation-request-id": [ - "475fd34a-6a68-45bc-8b19-a3395c56c5a3" + "6bf813ef-b353-429e-a49f-2515f479142c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041436Z:475fd34a-6a68-45bc-8b19-a3395c56c5a3" + "WESTEUROPE:20150827T171500Z:6bf813ef-b353-429e-a49f-2515f479142c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3232,7 +3424,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:35 GMT" + "Thu, 27 Aug 2015 17:14:59 GMT" ] }, "StatusCode": 200 @@ -3247,7 +3439,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3262,16 +3454,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14860" ], "x-ms-request-id": [ - "5dae9329-acaf-4830-8d7a-1973eae47a78" + "b6d6c505-1bb7-4f96-a5c4-3012503970ea" ], "x-ms-correlation-request-id": [ - "5dae9329-acaf-4830-8d7a-1973eae47a78" + "b6d6c505-1bb7-4f96-a5c4-3012503970ea" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041439Z:5dae9329-acaf-4830-8d7a-1973eae47a78" + "WESTEUROPE:20150827T171504Z:b6d6c505-1bb7-4f96-a5c4-3012503970ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3280,7 +3472,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:39 GMT" + "Thu, 27 Aug 2015 17:15:04 GMT" ] }, "StatusCode": 200 @@ -3295,7 +3487,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3310,16 +3502,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14858" ], "x-ms-request-id": [ - "dcf0e236-6658-4202-a5a7-97b15183092c" + "729ccbcf-ba26-433d-91ec-18b618105616" ], "x-ms-correlation-request-id": [ - "dcf0e236-6658-4202-a5a7-97b15183092c" + "729ccbcf-ba26-433d-91ec-18b618105616" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041443Z:dcf0e236-6658-4202-a5a7-97b15183092c" + "WESTEUROPE:20150827T171508Z:729ccbcf-ba26-433d-91ec-18b618105616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3328,7 +3520,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:42 GMT" + "Thu, 27 Aug 2015 17:15:07 GMT" ] }, "StatusCode": 200 @@ -3343,7 +3535,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3358,16 +3550,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14856" ], "x-ms-request-id": [ - "90335201-5e95-4590-883e-12cca7b37019" + "01aa26f5-9bac-4bdb-839e-753d011fbf58" ], "x-ms-correlation-request-id": [ - "90335201-5e95-4590-883e-12cca7b37019" + "01aa26f5-9bac-4bdb-839e-753d011fbf58" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041446Z:90335201-5e95-4590-883e-12cca7b37019" + "WESTEUROPE:20150827T171512Z:01aa26f5-9bac-4bdb-839e-753d011fbf58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3376,7 +3568,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:46 GMT" + "Thu, 27 Aug 2015 17:15:11 GMT" ] }, "StatusCode": 200 @@ -3391,7 +3583,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3406,16 +3598,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14854" ], "x-ms-request-id": [ - "42772015-9d6b-4074-a781-820c08f57747" + "3dd4670f-3c42-4415-97e0-a9190d76a978" ], "x-ms-correlation-request-id": [ - "42772015-9d6b-4074-a781-820c08f57747" + "3dd4670f-3c42-4415-97e0-a9190d76a978" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041450Z:42772015-9d6b-4074-a781-820c08f57747" + "WESTEUROPE:20150827T171516Z:3dd4670f-3c42-4415-97e0-a9190d76a978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3424,7 +3616,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:50 GMT" + "Thu, 27 Aug 2015 17:15:15 GMT" ] }, "StatusCode": 200 @@ -3439,7 +3631,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3454,16 +3646,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14852" ], "x-ms-request-id": [ - "696902c1-1efb-4062-866c-6f2aba1af7c1" + "b814ea24-f617-4dd4-b1b7-94f766d9b84f" ], "x-ms-correlation-request-id": [ - "696902c1-1efb-4062-866c-6f2aba1af7c1" + "b814ea24-f617-4dd4-b1b7-94f766d9b84f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041453Z:696902c1-1efb-4062-866c-6f2aba1af7c1" + "WESTEUROPE:20150827T171519Z:b814ea24-f617-4dd4-b1b7-94f766d9b84f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3472,7 +3664,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:53 GMT" + "Thu, 27 Aug 2015 17:15:19 GMT" ] }, "StatusCode": 200 @@ -3487,7 +3679,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3502,16 +3694,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14850" ], "x-ms-request-id": [ - "49a2e23f-09e1-4ae4-aa6b-8041422e5e9f" + "d09b60a7-b83a-489f-8548-ef84436b8be3" ], "x-ms-correlation-request-id": [ - "49a2e23f-09e1-4ae4-aa6b-8041422e5e9f" + "d09b60a7-b83a-489f-8548-ef84436b8be3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041457Z:49a2e23f-09e1-4ae4-aa6b-8041422e5e9f" + "WESTEUROPE:20150827T171523Z:d09b60a7-b83a-489f-8548-ef84436b8be3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3520,7 +3712,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:14:57 GMT" + "Thu, 27 Aug 2015 17:15:23 GMT" ] }, "StatusCode": 200 @@ -3535,7 +3727,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3550,16 +3742,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14848" ], "x-ms-request-id": [ - "e4dfe4a2-06d9-45ce-932b-79138b166ea3" + "407afc71-9fcb-48aa-bc45-6d992c225d24" ], "x-ms-correlation-request-id": [ - "e4dfe4a2-06d9-45ce-932b-79138b166ea3" + "407afc71-9fcb-48aa-bc45-6d992c225d24" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041500Z:e4dfe4a2-06d9-45ce-932b-79138b166ea3" + "WESTEUROPE:20150827T171527Z:407afc71-9fcb-48aa-bc45-6d992c225d24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3568,7 +3760,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:00 GMT" + "Thu, 27 Aug 2015 17:15:27 GMT" ] }, "StatusCode": 200 @@ -3583,7 +3775,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:13:06.3325027Z\",\r\n \"duration\": \"PT2.3630997S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T17:13:13.1754917Z\",\r\n \"duration\": \"PT3.3241656S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3598,16 +3790,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14846" ], "x-ms-request-id": [ - "b25f4482-232c-4880-a763-18023ce49ec8" + "14457aaa-de29-41b9-b335-e2c9e58d3d02" ], "x-ms-correlation-request-id": [ - "b25f4482-232c-4880-a763-18023ce49ec8" + "14457aaa-de29-41b9-b335-e2c9e58d3d02" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041504Z:b25f4482-232c-4880-a763-18023ce49ec8" + "WESTEUROPE:20150827T171531Z:14457aaa-de29-41b9-b335-e2c9e58d3d02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3616,7 +3808,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:04 GMT" + "Thu, 27 Aug 2015 17:15:31 GMT" ] }, "StatusCode": 200 @@ -3631,10 +3823,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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:15:07.255371Z\",\r\n \"duration\": \"PT2M3.285968S\",\r\n \"correlationId\": \"d2686cd3-aa7a-4868-a97e-bc5465ecc9b2\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40222/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-rg40222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:15:33.1672787Z\",\r\n \"duration\": \"PT2M23.3159526S\",\r\n \"correlationId\": \"2dae4319-d1c4-415a-a028-00b02ea2d314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server40222/firewallrules/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2565" + "2568" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3646,16 +3838,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14844" ], "x-ms-request-id": [ - "c89fb49f-ad75-48ae-a69e-39b4790c50e2" + "68c4fa58-0090-44a9-88b9-5017e5f5ce83" ], "x-ms-correlation-request-id": [ - "c89fb49f-ad75-48ae-a69e-39b4790c50e2" + "68c4fa58-0090-44a9-88b9-5017e5f5ce83" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041507Z:c89fb49f-ad75-48ae-a69e-39b4790c50e2" + "WESTEUROPE:20150827T171535Z:68c4fa58-0090-44a9-88b9-5017e5f5ce83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3664,7 +3856,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:07 GMT" + "Thu, 27 Aug 2015 17:15:35 GMT" ] }, "StatusCode": 200 @@ -3694,16 +3886,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14843" ], "x-ms-request-id": [ - "09f3c30b-9e5b-4264-bf06-d7fd20dd75d8" + "575bc6f8-64c1-4678-bd6a-6228c6bb79d1" ], "x-ms-correlation-request-id": [ - "09f3c30b-9e5b-4264-bf06-d7fd20dd75d8" + "575bc6f8-64c1-4678-bd6a-6228c6bb79d1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041510Z:09f3c30b-9e5b-4264-bf06-d7fd20dd75d8" + "WESTEUROPE:20150827T171538Z:575bc6f8-64c1-4678-bd6a-6228c6bb79d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3712,7 +3904,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:09 GMT" + "Thu, 27 Aug 2015 17:15:37 GMT" ] }, "StatusCode": 200 @@ -3745,16 +3937,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "brazilus:d0687bef-925c-4151-9943-d6a97ad0c949" + "westeurope:6c68c1f3-f552-4028-8d29-3ac83777fbf4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14922" ], "x-ms-correlation-request-id": [ - "0c71409e-6d77-49e8-b537-92a047d13c96" + "9976b9dd-c799-472e-b8cc-5ff828e0e110" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041511Z:0c71409e-6d77-49e8-b537-92a047d13c96" + "WESTEUROPE:20150827T171539Z:9976b9dd-c799-472e-b8cc-5ff828e0e110" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3763,7 +3955,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:10 GMT" + "Thu, 27 Aug 2015 17:15:39 GMT" ] }, "StatusCode": 200 @@ -3778,7 +3970,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "01d7217d-701d-4e52-bd61-ddf335441183" + "ec7e1ff1-1dd3-4e33-96d2-dac058f298d9" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", @@ -3790,7 +3982,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "53b5883e-d6f4-4c9f-889c-8f5143548fd0" + "e7af450b-6958-4788-8f4c-748492838022" ], "X-Content-Type-Options": [ "nosniff" @@ -3802,19 +3994,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14913" ], "x-ms-correlation-request-id": [ - "f96ae63a-343f-4176-8308-23f23c1f9d26" + "ef0fc68f-388b-431c-be51-76f704986057" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041516Z:f96ae63a-343f-4176-8308-23f23c1f9d26" + "WESTEUROPE:20150827T171546Z:ef0fc68f-388b-431c-be51-76f704986057" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:16 GMT" + "Thu, 27 Aug 2015 17:15:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3832,7 +4024,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "819cf576-b039-49b0-b944-3affdc62a3b4" + "9e2e38ae-c921-46fe-8d3b-e395608b154e" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", @@ -3844,7 +4036,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e5ebd959-a14c-48e5-992d-101188e7e682" + "18dbaee9-352b-431f-8378-c6db6c33fb00" ], "X-Content-Type-Options": [ "nosniff" @@ -3856,19 +4048,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14910" ], "x-ms-correlation-request-id": [ - "2eec1bd6-7280-47b9-a7b6-15cde239e710" + "c6b7352c-bbc2-45e9-b06f-e6965b6f615b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041522Z:2eec1bd6-7280-47b9-a7b6-15cde239e710" + "WESTEUROPE:20150827T171555Z:c6b7352c-bbc2-45e9-b06f-e6965b6f615b" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:22 GMT" + "Thu, 27 Aug 2015 17:15:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3886,7 +4078,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "19bfd0fd-c274-4474-932d-b5efa1c4968d" + "b58b73d9-9fd8-4ad3-a95a-28e86b5abad4" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", @@ -3898,7 +4090,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "61134306-91b6-4693-a93b-b4044cf4fd45" + "8f9c4d7b-cb58-495b-ab0b-2675476eff2f" ], "X-Content-Type-Options": [ "nosniff" @@ -3910,19 +4102,73 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14906" ], "x-ms-correlation-request-id": [ - "93038e9d-e2e3-43dc-b4fa-3d9c3d1dac43" + "67e7d292-c189-435a-a27b-47a36fff2eaf" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041530Z:93038e9d-e2e3-43dc-b4fa-3d9c3d1dac43" + "WESTEUROPE:20150827T171605Z:67e7d292-c189-435a-a27b-47a36fff2eaf" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:29 GMT" + "Thu, 27 Aug 2015 17:16:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "99d3fb7d-b7a1-44a6-8567-bcadd52ad9ff" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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": [ + "744d9405-25c6-476b-8e41-b1a82dce9631" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "b1820652-3920-4e4b-bdf8-feacee745c50" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T171614Z:b1820652-3920-4e4b-bdf8-feacee745c50" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:16:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3946,7 +4192,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "01d7217d-701d-4e52-bd61-ddf335441183" + "ec7e1ff1-1dd3-4e33-96d2-dac058f298d9" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", @@ -3958,7 +4204,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e6b4c68c-07cf-4cf6-b515-9f0161dfca40" + "269c28b7-4445-4e04-9e1b-dda194442e8a" ], "X-Content-Type-Options": [ "nosniff" @@ -3973,19 +4219,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "6504ae36-a1fd-4df5-9016-6bba6b2291df" + "d1bad511-4864-468f-9905-a177e72876d2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041518Z:6504ae36-a1fd-4df5-9016-6bba6b2291df" + "WESTEUROPE:20150827T171549Z:d1bad511-4864-468f-9905-a177e72876d2" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:18 GMT" + "Thu, 27 Aug 2015 17:15:48 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4003,7 +4249,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "28c31ca4-951d-434b-84d8-8d8d8da13f59" + "6439ca58-2712-4ddf-950d-b6c26f329d8d" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -4015,7 +4261,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c2b3b7d4-dad7-4212-8960-0b8333326e88" + "81fdd365-c61e-4f94-bb7c-a9d68f2d82a9" ], "X-Content-Type-Options": [ "nosniff" @@ -4027,19 +4273,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14912" ], "x-ms-correlation-request-id": [ - "e3b53218-6425-4ca2-956d-8c809f51b3fe" + "9a5a93de-cb6c-432c-8ad6-20baf1c618bc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041520Z:e3b53218-6425-4ca2-956d-8c809f51b3fe" + "WESTEUROPE:20150827T171551Z:9a5a93de-cb6c-432c-8ad6-20baf1c618bc" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:19 GMT" + "Thu, 27 Aug 2015 17:15:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4057,7 +4303,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "819cf576-b039-49b0-b944-3affdc62a3b4" + "9e2e38ae-c921-46fe-8d3b-e395608b154e" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -4069,7 +4315,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "0f8e8d8c-a0f9-44c5-9a25-58ceea7bad79" + "855a829b-5b79-4100-829a-92d03bd2a970" ], "X-Content-Type-Options": [ "nosniff" @@ -4081,19 +4327,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14911" ], "x-ms-correlation-request-id": [ - "fadc8a46-6d93-49e2-b192-8c3f635d4bd9" + "e9bf2931-3e23-46e9-ace9-3c8dc98b0239" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041521Z:fadc8a46-6d93-49e2-b192-8c3f635d4bd9" + "WESTEUROPE:20150827T171553Z:e9bf2931-3e23-46e9-ace9-3c8dc98b0239" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:20 GMT" + "Thu, 27 Aug 2015 17:15:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4111,7 +4357,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bb42c86f-607f-4d42-8365-4293514667ac" + "00020d26-45e5-413c-9a31-650849089da8" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", @@ -4123,7 +4369,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "dd123c95-1cb4-4f59-9c86-f7b01c06f361" + "3684772c-f15a-444c-886a-666a6d833dcb" ], "X-Content-Type-Options": [ "nosniff" @@ -4135,19 +4381,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14909" ], "x-ms-correlation-request-id": [ - "6b6d36ce-84d7-42f1-bc4f-144ac70a8c3f" + "573db313-69d4-40d2-bb1f-25fa5f9ee969" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041526Z:6b6d36ce-84d7-42f1-bc4f-144ac70a8c3f" + "WESTEUROPE:20150827T171559Z:573db313-69d4-40d2-bb1f-25fa5f9ee969" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:25 GMT" + "Thu, 27 Aug 2015 17:15:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4165,7 +4411,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a39f07fb-2994-4adf-a91e-c169d73a3e4b" + "0c506528-a880-4203-b78f-7f21ca3f9fc5" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", @@ -4177,7 +4423,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b9f4e929-e2f0-4658-8228-f210667ce2cf" + "bcfe5bcc-ae6c-45d4-b907-da8cff560436" ], "X-Content-Type-Options": [ "nosniff" @@ -4189,19 +4435,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14908" ], "x-ms-correlation-request-id": [ - "bcfc3da6-91b1-4222-add6-a1dc5de45f2b" + "eb647dc1-fd2c-40d0-babe-ac55d719d670" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041527Z:bcfc3da6-91b1-4222-add6-a1dc5de45f2b" + "WESTEUROPE:20150827T171601Z:eb647dc1-fd2c-40d0-babe-ac55d719d670" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:27 GMT" + "Thu, 27 Aug 2015 17:16:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4219,7 +4465,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "19bfd0fd-c274-4474-932d-b5efa1c4968d" + "b58b73d9-9fd8-4ad3-a95a-28e86b5abad4" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", @@ -4231,7 +4477,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c382a6ef-ee41-40a8-a63a-d6a3bb934249" + "e3d78f10-98d6-4a5b-a690-b49d66e32e83" ], "X-Content-Type-Options": [ "nosniff" @@ -4243,19 +4489,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14907" ], "x-ms-correlation-request-id": [ - "4ebb04f8-f54f-4c34-abc1-90acd90cb45d" + "a3e1d358-98e8-43d9-b7a2-9e671c3cdfc7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041529Z:4ebb04f8-f54f-4c34-abc1-90acd90cb45d" + "WESTEUROPE:20150827T171603Z:a3e1d358-98e8-43d9-b7a2-9e671c3cdfc7" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:28 GMT" + "Thu, 27 Aug 2015 17:16:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4273,7 +4519,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f8634c93-4473-4333-b29c-886f49ad32e1" + "f5700e20-ab32-46f3-bf8d-ad19f3acfb5c" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", @@ -4285,7 +4531,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "530a93c1-f61e-4cf2-a0f9-0d56892b6d5e" + "df02b0f0-4280-4000-a03d-d8e1a31cb60f" ], "X-Content-Type-Options": [ "nosniff" @@ -4297,19 +4543,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14905" ], "x-ms-correlation-request-id": [ - "275cadec-81bd-4180-bbaf-ee20826e065d" + "45043ecd-63c0-4c2c-81cd-9cce675b92d4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041534Z:275cadec-81bd-4180-bbaf-ee20826e065d" + "WESTEUROPE:20150827T171609Z:45043ecd-63c0-4c2c-81cd-9cce675b92d4" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:33 GMT" + "Thu, 27 Aug 2015 17:16:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4327,7 +4573,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "138750b2-ef22-4c09-905c-9afd445bb920" + "99d3fb7d-b7a1-44a6-8567-bcadd52ad9ff" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", @@ -4339,7 +4585,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "15996fd0-976f-41bd-9372-2e350d937909" + "13fec713-0ad9-406b-aff2-06f917955a93" ], "X-Content-Type-Options": [ "nosniff" @@ -4351,19 +4597,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14904" ], "x-ms-correlation-request-id": [ - "c742d2e7-0997-4877-997b-1489ba946ee0" + "dc7d9fec-8ab3-4370-860e-ede3771bfb46" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041535Z:c742d2e7-0997-4877-997b-1489ba946ee0" + "WESTEUROPE:20150827T171612Z:dc7d9fec-8ab3-4370-860e-ede3771bfb46" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:34 GMT" + "Thu, 27 Aug 2015 17:16:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4381,19 +4627,127 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "73e92559-3170-4235-b229-ab7af6e605a7" + "31077e84-756b-4395-bdb5-8f52f115730e" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", "ResponseHeaders": { "Content-Length": [ - "604" + "606" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c6b47549-efe5-4e69-bc92-ceea7646bef7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "554ebe20-8de6-481c-b596-8f0c1c4d0dc1" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T171619Z:554ebe20-8de6-481c-b596-8f0c1c4d0dc1" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:16:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "d490f230-3533-4f69-bf1f-545e3be02605" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", + "ResponseHeaders": { + "Content-Length": [ + "606" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "5fbac277-7e24-48c5-85b6-fcdab254fddc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "0e3e9aca-91fd-4563-9a4c-7c1044154dbd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T171621Z:0e3e9aca-91fd-4563-9a4c-7c1044154dbd" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:16:21 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9ce8eeae-16dc-4a69-abad-6eee157e4298" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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}", + "ResponseHeaders": { + "Content-Length": [ + "606" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "208c0c3e-8a40-4930-b7ed-549deb83171f" + "ac0b6bcd-38e8-4f14-b285-154e32bf6de6" ], "X-Content-Type-Options": [ "nosniff" @@ -4405,19 +4759,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14900" ], "x-ms-correlation-request-id": [ - "22411186-4b25-4bba-a5ca-b62905c789bf" + "4e17e237-feff-446b-a115-0020798fd875" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041536Z:22411186-4b25-4bba-a5ca-b62905c789bf" + "WESTEUROPE:20150827T171623Z:4e17e237-feff-446b-a115-0020798fd875" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:35 GMT" + "Thu, 27 Aug 2015 17:16:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4435,7 +4789,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "09f021d6-2129-4c86-bccd-59657a773049" + "40ab0511-9045-4919-837c-8a306186a6e4" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -4447,7 +4801,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "04e20610-1fbc-4b50-b3bc-8de2b3ae28dc" + "11786c27-b5d5-4603-b985-a3e9638482cc" ], "X-Content-Type-Options": [ "nosniff" @@ -4459,19 +4813,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14899" ], "x-ms-correlation-request-id": [ - "78c40d5d-ae2f-4975-aaf3-0b6d4342eaeb" + "a95a2ab8-cb44-47a3-be1f-dd45bebc47bc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041539Z:78c40d5d-ae2f-4975-aaf3-0b6d4342eaeb" + "WESTEUROPE:20150827T171627Z:a95a2ab8-cb44-47a3-be1f-dd45bebc47bc" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:39 GMT" + "Thu, 27 Aug 2015 17:16:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4489,7 +4843,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f4451271-5f27-4535-82f6-bbbcf3c91d00" + "2a92cc75-e3fa-461f-a802-e3fbb94d8b7d" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -4501,7 +4855,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cdb450da-5ace-4f67-8891-e2e3ac74ccf2" + "77a81b79-3e17-4432-8a29-323a7f0154ed" ], "X-Content-Type-Options": [ "nosniff" @@ -4513,19 +4867,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14898" ], "x-ms-correlation-request-id": [ - "df43effa-18aa-4f79-8371-0cb8178cc526" + "cae0a14f-5a1f-47ab-a4d5-14862abc39e2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041541Z:df43effa-18aa-4f79-8371-0cb8178cc526" + "WESTEUROPE:20150827T171629Z:cae0a14f-5a1f-47ab-a4d5-14862abc39e2" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:41 GMT" + "Thu, 27 Aug 2015 17:16:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4549,7 +4903,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "819cf576-b039-49b0-b944-3affdc62a3b4" + "9e2e38ae-c921-46fe-8d3b-e395608b154e" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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\": 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}", @@ -4561,7 +4915,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ca174b23-4a88-4343-a135-0375daf8335e" + "becb900f-001b-4749-9fac-10f7e6aee149" ], "X-Content-Type-Options": [ "nosniff" @@ -4576,19 +4930,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "19eb55d4-880c-44f5-ad2c-d4c7a163467e" + "17529edb-5c29-4bd9-b966-6c97f700af85" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041525Z:19eb55d4-880c-44f5-ad2c-d4c7a163467e" + "WESTEUROPE:20150827T171557Z:17529edb-5c29-4bd9-b966-6c97f700af85" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:24 GMT" + "Thu, 27 Aug 2015 17:15:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4612,7 +4966,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "19bfd0fd-c274-4474-932d-b5efa1c4968d" + "b58b73d9-9fd8-4ad3-a95a-28e86b5abad4" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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\": 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}", @@ -4624,7 +4978,70 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "43024893-13c2-41e3-a4be-583bba8575aa" + "73461e64-ebcd-4364-9e17-97766f1fd3ae" + ], + "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": [ + "023f1514-cd16-4ab4-b3f7-5963e3bcda90" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T171607Z:023f1514-cd16-4ab4-b3f7-5963e3bcda90" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:16:07 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default/rules/rule1?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table2\",\r\n \"columnName\": \"column2\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "166" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "99d3fb7d-b7a1-44a6-8567-bcadd52ad9ff" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/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\": 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}", + "ResponseHeaders": { + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "f8cfd8b1-024c-40a2-b1d3-390b7aaadb21" ], "X-Content-Type-Options": [ "nosniff" @@ -4639,19 +5056,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "6f718313-2249-459e-bc46-6512bcbc5583" + "075bacdb-4275-4b5e-bd39-c2325f5fa144" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041532Z:6f718313-2249-459e-bc46-6512bcbc5583" + "WESTEUROPE:20150827T171617Z:075bacdb-4275-4b5e-bd39-c2325f5fa144" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:32 GMT" + "Thu, 27 Aug 2015 17:16:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4669,7 +5086,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "73e92559-3170-4235-b229-ab7af6e605a7" + "9ce8eeae-16dc-4a69-abad-6eee157e4298" ] }, "ResponseBody": "", @@ -4681,7 +5098,7 @@ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "ce540b93-5ed9-4b5c-a69c-f144a74840aa" + "7f6404c9-b260-43c0-84f1-ef5872005ffd" ], "X-Content-Type-Options": [ "nosniff" @@ -4693,19 +5110,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-correlation-request-id": [ - "d076606b-5f96-4e3e-8a28-abc9aa4f40a7" + "c671aff4-93c5-407d-ad44-c9b69b44af76" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041538Z:d076606b-5f96-4e3e-8a28-abc9aa4f40a7" + "WESTEUROPE:20150827T171625Z:c671aff4-93c5-407d-ad44-c9b69b44af76" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:15:37 GMT" + "Thu, 27 Aug 2015 17:16:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4716,6 +5133,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "cca24ec8-99b5-4aa7-9ff6-486e886f304c" + "SubscriptionId": "cca24ec8-99b5-4aa7-9ff6-486e886f304c", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com", + "User": "yrubin@microsoft.com" } } \ No newline at end of file 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 7ef8009531b0..7d8ac3aaddb9 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": [ - "14998" + "14568" ], "x-ms-request-id": [ - "96b5efea-58be-4e15-afa5-3c3b2738441d" + "e555e4fc-5691-4b8e-9d0e-480702473b84" ], "x-ms-correlation-request-id": [ - "96b5efea-58be-4e15-afa5-3c3b2738441d" + "e555e4fc-5691-4b8e-9d0e-480702473b84" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041642Z:96b5efea-58be-4e15-afa5-3c3b2738441d" + "WESTEUROPE:20150827T112552Z:e555e4fc-5691-4b8e-9d0e-480702473b84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:16:41 GMT" + "Thu, 27 Aug 2015 11:25:51 GMT" ] }, "StatusCode": 404 @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-request-id": [ - "5d047512-4a81-4750-a588-7e484dd5d1c1" + "19266b80-139f-45a1-b2b1-ad99d9b6a92c" ], "x-ms-correlation-request-id": [ - "5d047512-4a81-4750-a588-7e484dd5d1c1" + "19266b80-139f-45a1-b2b1-ad99d9b6a92c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041645Z:5d047512-4a81-4750-a588-7e484dd5d1c1" + "WESTEUROPE:20150827T112554Z:19266b80-139f-45a1-b2b1-ad99d9b6a92c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:16:45 GMT" + "Thu, 27 Aug 2015 11:25:53 GMT" ] }, "StatusCode": 201 @@ -121,7 +121,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-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-08-13T04:16:46.9223733Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"128f76f0-4054-4ec6-86a3-156f868a6277\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:25:55.4037046Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"48556a76-246f-4e36-b0d0-1478611997cf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ "2295" @@ -136,16 +136,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-request-id": [ - "128f76f0-4054-4ec6-86a3-156f868a6277" + "48556a76-246f-4e36-b0d0-1478611997cf" ], "x-ms-correlation-request-id": [ - "128f76f0-4054-4ec6-86a3-156f868a6277" + "48556a76-246f-4e36-b0d0-1478611997cf" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041647Z:128f76f0-4054-4ec6-86a3-156f868a6277" + "WESTEUROPE:20150827T112555Z:48556a76-246f-4e36-b0d0-1478611997cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:16:46 GMT" + "Thu, 27 Aug 2015 11:25:54 GMT" ] }, "StatusCode": 200 @@ -175,7 +175,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-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-08-13T04:16:49.7878154Z\",\r\n \"duration\": \"PT1.6482601S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:25:59.2268519Z\",\r\n \"duration\": \"PT2.4431675S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ "2303" @@ -190,16 +190,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-request-id": [ - "44e28483-7f0d-4e49-975e-4abde328dc20" + "342751df-183e-4c98-88c5-9d124d4eb3b5" ], "x-ms-correlation-request-id": [ - "44e28483-7f0d-4e49-975e-4abde328dc20" + "342751df-183e-4c98-88c5-9d124d4eb3b5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041650Z:44e28483-7f0d-4e49-975e-4abde328dc20" + "WESTEUROPE:20150827T112600Z:342751df-183e-4c98-88c5-9d124d4eb3b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +208,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:16:50 GMT" + "Thu, 27 Aug 2015 11:25:59 GMT" ] }, "StatusCode": 201 @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14565" ], "x-ms-request-id": [ - "7730f17e-0f35-4ab9-8280-83a4044aa99d" + "a6028842-c15e-45f3-8f48-47108e1f9094" ], "x-ms-correlation-request-id": [ - "7730f17e-0f35-4ab9-8280-83a4044aa99d" + "a6028842-c15e-45f3-8f48-47108e1f9094" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041651Z:7730f17e-0f35-4ab9-8280-83a4044aa99d" + "WESTEUROPE:20150827T112601Z:a6028842-c15e-45f3-8f48-47108e1f9094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,7 +256,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:16:50 GMT" + "Thu, 27 Aug 2015 11:26:00 GMT" ] }, "StatusCode": 200 @@ -286,16 +286,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14563" ], "x-ms-request-id": [ - "5a81c83c-eed2-4a79-83a1-b10702a979db" + "da47a02f-bc53-4e49-9933-35fff1ce1e92" ], "x-ms-correlation-request-id": [ - "5a81c83c-eed2-4a79-83a1-b10702a979db" + "da47a02f-bc53-4e49-9933-35fff1ce1e92" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041654Z:5a81c83c-eed2-4a79-83a1-b10702a979db" + "WESTEUROPE:20150827T112605Z:da47a02f-bc53-4e49-9933-35fff1ce1e92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,7 +304,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:16:54 GMT" + "Thu, 27 Aug 2015 11:26:04 GMT" ] }, "StatusCode": 200 @@ -334,16 +334,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14561" ], "x-ms-request-id": [ - "606bf054-cb2f-42d7-a0c5-0a95f94500c1" + "097b82ce-9979-40c0-9841-faae2db182bd" ], "x-ms-correlation-request-id": [ - "606bf054-cb2f-42d7-a0c5-0a95f94500c1" + "097b82ce-9979-40c0-9841-faae2db182bd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041658Z:606bf054-cb2f-42d7-a0c5-0a95f94500c1" + "WESTEUROPE:20150827T112609Z:097b82ce-9979-40c0-9841-faae2db182bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,7 +352,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:16:57 GMT" + "Thu, 27 Aug 2015 11:26:08 GMT" ] }, "StatusCode": 200 @@ -382,16 +382,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14558" ], "x-ms-request-id": [ - "7c02658a-556e-4165-9f21-48a99411c40b" + "7dfe0ee7-8552-48a0-99e5-9e5b26b6352b" ], "x-ms-correlation-request-id": [ - "7c02658a-556e-4165-9f21-48a99411c40b" + "7dfe0ee7-8552-48a0-99e5-9e5b26b6352b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041701Z:7c02658a-556e-4165-9f21-48a99411c40b" + "WESTEUROPE:20150827T112612Z:7dfe0ee7-8552-48a0-99e5-9e5b26b6352b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,7 +400,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:01 GMT" + "Thu, 27 Aug 2015 11:26:11 GMT" ] }, "StatusCode": 200 @@ -430,16 +430,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14556" ], "x-ms-request-id": [ - "074c5447-8bbc-4a61-b16f-0b773bd020ce" + "f0a960c3-f126-4b8e-9e70-1eafcf63b4d5" ], "x-ms-correlation-request-id": [ - "074c5447-8bbc-4a61-b16f-0b773bd020ce" + "f0a960c3-f126-4b8e-9e70-1eafcf63b4d5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041705Z:074c5447-8bbc-4a61-b16f-0b773bd020ce" + "WESTEUROPE:20150827T112616Z:f0a960c3-f126-4b8e-9e70-1eafcf63b4d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,7 +448,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:04 GMT" + "Thu, 27 Aug 2015 11:26:16 GMT" ] }, "StatusCode": 200 @@ -478,16 +478,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14553" ], "x-ms-request-id": [ - "dfbb0521-d46c-4d9d-9df0-6dcee6991054" + "6a7c0240-0f92-4a88-a849-e02ad920a767" ], "x-ms-correlation-request-id": [ - "dfbb0521-d46c-4d9d-9df0-6dcee6991054" + "6a7c0240-0f92-4a88-a849-e02ad920a767" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041708Z:dfbb0521-d46c-4d9d-9df0-6dcee6991054" + "WESTEUROPE:20150827T112620Z:6a7c0240-0f92-4a88-a849-e02ad920a767" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,7 +496,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:07 GMT" + "Thu, 27 Aug 2015 11:26:20 GMT" ] }, "StatusCode": 200 @@ -526,16 +526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14551" ], "x-ms-request-id": [ - "f8075c7a-de9e-4174-8377-6b64745b8b72" + "b18dc3cb-1a0a-499c-b6e3-1b176dc41931" ], "x-ms-correlation-request-id": [ - "f8075c7a-de9e-4174-8377-6b64745b8b72" + "b18dc3cb-1a0a-499c-b6e3-1b176dc41931" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041712Z:f8075c7a-de9e-4174-8377-6b64745b8b72" + "WESTEUROPE:20150827T112624Z:b18dc3cb-1a0a-499c-b6e3-1b176dc41931" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -544,7 +544,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:12 GMT" + "Thu, 27 Aug 2015 11:26:24 GMT" ] }, "StatusCode": 200 @@ -574,16 +574,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14549" ], "x-ms-request-id": [ - "09e02275-efcb-4bf8-821f-e3de62a23d82" + "dd3f26cc-6da8-4878-934a-affc0a5ccd96" ], "x-ms-correlation-request-id": [ - "09e02275-efcb-4bf8-821f-e3de62a23d82" + "dd3f26cc-6da8-4878-934a-affc0a5ccd96" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041715Z:09e02275-efcb-4bf8-821f-e3de62a23d82" + "WESTEUROPE:20150827T112628Z:dd3f26cc-6da8-4878-934a-affc0a5ccd96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592,7 +592,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:15 GMT" + "Thu, 27 Aug 2015 11:26:28 GMT" ] }, "StatusCode": 200 @@ -622,16 +622,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14547" ], "x-ms-request-id": [ - "b057a003-be02-4c2d-aa9e-4eca55dc993a" + "66d6d074-c2f3-47ae-8eab-ad8b9fc0db80" ], "x-ms-correlation-request-id": [ - "b057a003-be02-4c2d-aa9e-4eca55dc993a" + "66d6d074-c2f3-47ae-8eab-ad8b9fc0db80" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041719Z:b057a003-be02-4c2d-aa9e-4eca55dc993a" + "WESTEUROPE:20150827T112632Z:66d6d074-c2f3-47ae-8eab-ad8b9fc0db80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,7 +640,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:19 GMT" + "Thu, 27 Aug 2015 11:26:31 GMT" ] }, "StatusCode": 200 @@ -670,16 +670,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14544" ], "x-ms-request-id": [ - "164ff828-a34d-4d62-8c06-e4ca5a838b98" + "a862b460-0c97-4986-9823-11be6018a0b6" ], "x-ms-correlation-request-id": [ - "164ff828-a34d-4d62-8c06-e4ca5a838b98" + "a862b460-0c97-4986-9823-11be6018a0b6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041723Z:164ff828-a34d-4d62-8c06-e4ca5a838b98" + "WESTEUROPE:20150827T112635Z:a862b460-0c97-4986-9823-11be6018a0b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -688,7 +688,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:22 GMT" + "Thu, 27 Aug 2015 11:26:35 GMT" ] }, "StatusCode": 200 @@ -718,16 +718,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14542" ], "x-ms-request-id": [ - "72680a05-ea12-4a06-a65f-bb490b4da9ae" + "78ccd18f-3adc-47e1-b5a3-c2e707548a82" ], "x-ms-correlation-request-id": [ - "72680a05-ea12-4a06-a65f-bb490b4da9ae" + "78ccd18f-3adc-47e1-b5a3-c2e707548a82" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041726Z:72680a05-ea12-4a06-a65f-bb490b4da9ae" + "WESTEUROPE:20150827T112639Z:78ccd18f-3adc-47e1-b5a3-c2e707548a82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:26 GMT" + "Thu, 27 Aug 2015 11:26:39 GMT" ] }, "StatusCode": 200 @@ -751,10 +751,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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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}", "ResponseHeaders": { "Content-Length": [ - "662" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -766,16 +766,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14540" ], "x-ms-request-id": [ - "02be5448-02ca-475e-9e14-3b314ba6d910" + "d7817e32-0f17-462a-8d89-fe5196454a04" ], "x-ms-correlation-request-id": [ - "02be5448-02ca-475e-9e14-3b314ba6d910" + "d7817e32-0f17-462a-8d89-fe5196454a04" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041730Z:02be5448-02ca-475e-9e14-3b314ba6d910" + "WESTEUROPE:20150827T112643Z:d7817e32-0f17-462a-8d89-fe5196454a04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -784,7 +784,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:29 GMT" + "Thu, 27 Aug 2015 11:26:42 GMT" ] }, "StatusCode": 200 @@ -799,10 +799,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-08-13T04:17:33.2247111Z\",\r\n \"duration\": \"PT2.9861154S\",\r\n \"trackingId\": \"ca6ed41d-2ca5-4374-828f-af7514a3a4e1\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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}", "ResponseHeaders": { "Content-Length": [ - "2101" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -814,16 +814,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14538" ], "x-ms-request-id": [ - "4d5c53c8-aa78-4f49-8dd5-836a9edb5a18" + "43af5998-12cc-4065-9e49-fe23e1e76892" ], "x-ms-correlation-request-id": [ - "4d5c53c8-aa78-4f49-8dd5-836a9edb5a18" + "43af5998-12cc-4065-9e49-fe23e1e76892" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041734Z:4d5c53c8-aa78-4f49-8dd5-836a9edb5a18" + "WESTEUROPE:20150827T112647Z:43af5998-12cc-4065-9e49-fe23e1e76892" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -832,7 +832,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:33 GMT" + "Thu, 27 Aug 2015 11:26:46 GMT" ] }, "StatusCode": 200 @@ -847,10 +847,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-08-13T04:17:33.2247111Z\",\r\n \"duration\": \"PT2.9861154S\",\r\n \"trackingId\": \"ca6ed41d-2ca5-4374-828f-af7514a3a4e1\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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}", "ResponseHeaders": { "Content-Length": [ - "2101" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -862,16 +862,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14536" ], "x-ms-request-id": [ - "af348fd1-4abe-4d05-a65a-e45a1c8cae0e" + "77872c66-30f2-492e-82c6-5a5de8159a44" ], "x-ms-correlation-request-id": [ - "af348fd1-4abe-4d05-a65a-e45a1c8cae0e" + "77872c66-30f2-492e-82c6-5a5de8159a44" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041737Z:af348fd1-4abe-4d05-a65a-e45a1c8cae0e" + "WESTEUROPE:20150827T112651Z:77872c66-30f2-492e-82c6-5a5de8159a44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -880,7 +880,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:37 GMT" + "Thu, 27 Aug 2015 11:26:50 GMT" ] }, "StatusCode": 200 @@ -895,10 +895,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-08-13T04:17:33.2247111Z\",\r\n \"duration\": \"PT2.9861154S\",\r\n \"trackingId\": \"ca6ed41d-2ca5-4374-828f-af7514a3a4e1\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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}", "ResponseHeaders": { "Content-Length": [ - "2101" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -910,16 +910,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14531" ], "x-ms-request-id": [ - "98a83e7b-5ca9-4a02-8f1e-8831ed2b16da" + "05d9cea5-895d-4107-b601-2d31c4b82cef" ], "x-ms-correlation-request-id": [ - "98a83e7b-5ca9-4a02-8f1e-8831ed2b16da" + "05d9cea5-895d-4107-b601-2d31c4b82cef" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041741Z:98a83e7b-5ca9-4a02-8f1e-8831ed2b16da" + "WESTEUROPE:20150827T112654Z:05d9cea5-895d-4107-b601-2d31c4b82cef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -928,7 +928,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:40 GMT" + "Thu, 27 Aug 2015 11:26:54 GMT" ] }, "StatusCode": 200 @@ -943,10 +943,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-08-13T04:17:33.2247111Z\",\r\n \"duration\": \"PT2.9861154S\",\r\n \"trackingId\": \"ca6ed41d-2ca5-4374-828f-af7514a3a4e1\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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/4E4566BD9684D866\",\r\n \"operationId\": \"4E4566BD9684D866\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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": [ - "2101" + "661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -958,16 +958,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14529" ], "x-ms-request-id": [ - "6a9151ef-e7e1-41b6-b589-d4f87f58d816" + "3e16bc2f-799a-4632-a709-950cb67363bb" ], "x-ms-correlation-request-id": [ - "6a9151ef-e7e1-41b6-b589-d4f87f58d816" + "3e16bc2f-799a-4632-a709-950cb67363bb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041745Z:6a9151ef-e7e1-41b6-b589-d4f87f58d816" + "WESTEUROPE:20150827T112658Z:3e16bc2f-799a-4632-a709-950cb67363bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -976,7 +976,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:44 GMT" + "Thu, 27 Aug 2015 11:26:57 GMT" ] }, "StatusCode": 200 @@ -991,10 +991,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-08-13T04:17:33.2247111Z\",\r\n \"duration\": \"PT2.9861154S\",\r\n \"trackingId\": \"ca6ed41d-2ca5-4374-828f-af7514a3a4e1\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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/F29D8C724029A0E5\",\r\n \"operationId\": \"F29D8C724029A0E5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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": [ - "2101" + "1387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1006,16 +1006,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14527" ], "x-ms-request-id": [ - "b1f77a23-4afa-4588-988f-f4e691f21404" + "2d2eaa41-479d-4460-977c-4b77daa9b822" ], "x-ms-correlation-request-id": [ - "b1f77a23-4afa-4588-988f-f4e691f21404" + "2d2eaa41-479d-4460-977c-4b77daa9b822" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041748Z:b1f77a23-4afa-4588-988f-f4e691f21404" + "WESTEUROPE:20150827T112702Z:2d2eaa41-479d-4460-977c-4b77daa9b822" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1024,7 +1024,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:47 GMT" + "Thu, 27 Aug 2015 11:27:02 GMT" ] }, "StatusCode": 200 @@ -1039,10 +1039,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-08-13T04:17:33.2247111Z\",\r\n \"duration\": \"PT2.9861154S\",\r\n \"trackingId\": \"ca6ed41d-2ca5-4374-828f-af7514a3a4e1\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:04.3491366Z\",\r\n \"duration\": \"PT8.9621971S\",\r\n \"trackingId\": \"8143bce0-af53-4d25-b8d8-f5b565f2cb97\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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": [ - "2101" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1054,16 +1054,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14525" ], "x-ms-request-id": [ - "04810013-0a32-487e-b5fe-8eed0d5ba824" + "f47e7ee9-e391-41e4-ab01-8a97abf9082d" ], "x-ms-correlation-request-id": [ - "04810013-0a32-487e-b5fe-8eed0d5ba824" + "f47e7ee9-e391-41e4-ab01-8a97abf9082d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041752Z:04810013-0a32-487e-b5fe-8eed0d5ba824" + "WESTEUROPE:20150827T112706Z:f47e7ee9-e391-41e4-ab01-8a97abf9082d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1072,7 +1072,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:51 GMT" + "Thu, 27 Aug 2015 11:27:06 GMT" ] }, "StatusCode": 200 @@ -1087,10 +1087,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-08-13T04:17:33.2247111Z\",\r\n \"duration\": \"PT2.9861154S\",\r\n \"trackingId\": \"ca6ed41d-2ca5-4374-828f-af7514a3a4e1\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:04.3491366Z\",\r\n \"duration\": \"PT8.9621971S\",\r\n \"trackingId\": \"8143bce0-af53-4d25-b8d8-f5b565f2cb97\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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": [ - "2101" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1102,16 +1102,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14523" ], "x-ms-request-id": [ - "649e11cb-46f2-46c6-95e6-7a0d8eb10af7" + "737bfb45-b335-460f-bb5e-6e50445d448b" ], "x-ms-correlation-request-id": [ - "649e11cb-46f2-46c6-95e6-7a0d8eb10af7" + "737bfb45-b335-460f-bb5e-6e50445d448b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041755Z:649e11cb-46f2-46c6-95e6-7a0d8eb10af7" + "WESTEUROPE:20150827T112711Z:737bfb45-b335-460f-bb5e-6e50445d448b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1120,7 +1120,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:55 GMT" + "Thu, 27 Aug 2015 11:27:10 GMT" ] }, "StatusCode": 200 @@ -1135,10 +1135,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-08-13T04:17:33.2247111Z\",\r\n \"duration\": \"PT2.9861154S\",\r\n \"trackingId\": \"ca6ed41d-2ca5-4374-828f-af7514a3a4e1\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:04.3491366Z\",\r\n \"duration\": \"PT8.9621971S\",\r\n \"trackingId\": \"8143bce0-af53-4d25-b8d8-f5b565f2cb97\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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": [ - "2101" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1150,16 +1150,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14521" ], "x-ms-request-id": [ - "a3d80fb6-b1f2-4772-8fa2-669cb58333b7" + "cf609410-d2d1-4819-a5dd-98c3919e424b" ], "x-ms-correlation-request-id": [ - "a3d80fb6-b1f2-4772-8fa2-669cb58333b7" + "cf609410-d2d1-4819-a5dd-98c3919e424b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041759Z:a3d80fb6-b1f2-4772-8fa2-669cb58333b7" + "WESTEUROPE:20150827T112715Z:cf609410-d2d1-4819-a5dd-98c3919e424b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1168,7 +1168,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:59 GMT" + "Thu, 27 Aug 2015 11:27:14 GMT" ] }, "StatusCode": 200 @@ -1183,10 +1183,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-08-13T04:17:33.2247111Z\",\r\n \"duration\": \"PT2.9861154S\",\r\n \"trackingId\": \"ca6ed41d-2ca5-4374-828f-af7514a3a4e1\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:04.3491366Z\",\r\n \"duration\": \"PT8.9621971S\",\r\n \"trackingId\": \"8143bce0-af53-4d25-b8d8-f5b565f2cb97\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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": [ - "2101" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1198,16 +1198,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14519" ], "x-ms-request-id": [ - "824c76a5-fd4d-400d-a297-f5cdf0889418" + "bd903b62-e6a5-445f-8e0d-571fb9fdb7b2" ], "x-ms-correlation-request-id": [ - "824c76a5-fd4d-400d-a297-f5cdf0889418" + "bd903b62-e6a5-445f-8e0d-571fb9fdb7b2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041803Z:824c76a5-fd4d-400d-a297-f5cdf0889418" + "WESTEUROPE:20150827T112719Z:bd903b62-e6a5-445f-8e0d-571fb9fdb7b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1216,7 +1216,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:03 GMT" + "Thu, 27 Aug 2015 11:27:18 GMT" ] }, "StatusCode": 200 @@ -1231,10 +1231,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-08-13T04:18:06.2463852Z\",\r\n \"duration\": \"PT36.0077895S\",\r\n \"trackingId\": \"470f824c-eefd-4144-90a4-b1e0d6b50f2d\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:04.3491366Z\",\r\n \"duration\": \"PT8.9621971S\",\r\n \"trackingId\": \"8143bce0-af53-4d25-b8d8-f5b565f2cb97\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1246,16 +1246,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14514" ], "x-ms-request-id": [ - "d49647f8-25fd-4b80-ad0d-189904e78b18" + "b36490bd-c52e-475c-b7b9-50c64e6811ff" ], "x-ms-correlation-request-id": [ - "d49647f8-25fd-4b80-ad0d-189904e78b18" + "b36490bd-c52e-475c-b7b9-50c64e6811ff" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041806Z:d49647f8-25fd-4b80-ad0d-189904e78b18" + "WESTEUROPE:20150827T112723Z:b36490bd-c52e-475c-b7b9-50c64e6811ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1264,7 +1264,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:06 GMT" + "Thu, 27 Aug 2015 11:27:22 GMT" ] }, "StatusCode": 200 @@ -1279,10 +1279,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-08-13T04:18:06.2463852Z\",\r\n \"duration\": \"PT36.0077895S\",\r\n \"trackingId\": \"470f824c-eefd-4144-90a4-b1e0d6b50f2d\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:04.3491366Z\",\r\n \"duration\": \"PT8.9621971S\",\r\n \"trackingId\": \"8143bce0-af53-4d25-b8d8-f5b565f2cb97\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1294,16 +1294,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14512" ], "x-ms-request-id": [ - "82888b8a-18a3-474e-bcaf-615e8d81e8ad" + "1bd7bf01-623b-409f-97dc-ddc74c373195" ], "x-ms-correlation-request-id": [ - "82888b8a-18a3-474e-bcaf-615e8d81e8ad" + "1bd7bf01-623b-409f-97dc-ddc74c373195" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041810Z:82888b8a-18a3-474e-bcaf-615e8d81e8ad" + "WESTEUROPE:20150827T112727Z:1bd7bf01-623b-409f-97dc-ddc74c373195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1312,7 +1312,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:10 GMT" + "Thu, 27 Aug 2015 11:27:26 GMT" ] }, "StatusCode": 200 @@ -1327,10 +1327,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-08-13T04:18:06.2463852Z\",\r\n \"duration\": \"PT36.0077895S\",\r\n \"trackingId\": \"470f824c-eefd-4144-90a4-b1e0d6b50f2d\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:04.3491366Z\",\r\n \"duration\": \"PT8.9621971S\",\r\n \"trackingId\": \"8143bce0-af53-4d25-b8d8-f5b565f2cb97\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1342,16 +1342,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14508" ], "x-ms-request-id": [ - "952cad18-3295-4ae2-97da-dfde5a541ce7" + "b7ad744a-f99d-45cb-a10f-fddd41324d17" ], "x-ms-correlation-request-id": [ - "952cad18-3295-4ae2-97da-dfde5a541ce7" + "b7ad744a-f99d-45cb-a10f-fddd41324d17" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041814Z:952cad18-3295-4ae2-97da-dfde5a541ce7" + "WESTEUROPE:20150827T112731Z:b7ad744a-f99d-45cb-a10f-fddd41324d17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1360,7 +1360,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:13 GMT" + "Thu, 27 Aug 2015 11:27:30 GMT" ] }, "StatusCode": 200 @@ -1375,10 +1375,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-08-13T04:18:06.2463852Z\",\r\n \"duration\": \"PT36.0077895S\",\r\n \"trackingId\": \"470f824c-eefd-4144-90a4-b1e0d6b50f2d\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:04.3491366Z\",\r\n \"duration\": \"PT8.9621971S\",\r\n \"trackingId\": \"8143bce0-af53-4d25-b8d8-f5b565f2cb97\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2100" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1390,16 +1390,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14506" ], "x-ms-request-id": [ - "6236265c-e39b-4517-b787-ed0000731167" + "163d4586-cdc2-4a6c-9e2e-aced0de54a31" ], "x-ms-correlation-request-id": [ - "6236265c-e39b-4517-b787-ed0000731167" + "163d4586-cdc2-4a6c-9e2e-aced0de54a31" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041817Z:6236265c-e39b-4517-b787-ed0000731167" + "WESTEUROPE:20150827T112735Z:163d4586-cdc2-4a6c-9e2e-aced0de54a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1408,7 +1408,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:17 GMT" + "Thu, 27 Aug 2015 11:27:35 GMT" ] }, "StatusCode": 200 @@ -1423,10 +1423,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-08-13T04:18:06.2463852Z\",\r\n \"duration\": \"PT36.0077895S\",\r\n \"trackingId\": \"470f824c-eefd-4144-90a4-b1e0d6b50f2d\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:36.2498918Z\",\r\n \"duration\": \"PT40.8629523S\",\r\n \"trackingId\": \"ae50a39a-9a60-4d19-b9b6-2b32fe1c1ff3\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" @@ -1438,16 +1438,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14504" ], "x-ms-request-id": [ - "17bc5758-869a-4380-bfd5-e5aab38b0f55" + "571467c1-1b62-4c6d-9d31-01d09795a34b" ], "x-ms-correlation-request-id": [ - "17bc5758-869a-4380-bfd5-e5aab38b0f55" + "571467c1-1b62-4c6d-9d31-01d09795a34b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041821Z:17bc5758-869a-4380-bfd5-e5aab38b0f55" + "WESTEUROPE:20150827T112739Z:571467c1-1b62-4c6d-9d31-01d09795a34b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1456,7 +1456,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:20 GMT" + "Thu, 27 Aug 2015 11:27:39 GMT" ] }, "StatusCode": 200 @@ -1471,10 +1471,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-08-13T04:18:06.2463852Z\",\r\n \"duration\": \"PT36.0077895S\",\r\n \"trackingId\": \"470f824c-eefd-4144-90a4-b1e0d6b50f2d\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:36.2498918Z\",\r\n \"duration\": \"PT40.8629523S\",\r\n \"trackingId\": \"ae50a39a-9a60-4d19-b9b6-2b32fe1c1ff3\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" @@ -1486,16 +1486,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14502" ], "x-ms-request-id": [ - "3c4177e2-c12a-4e18-b880-c45de9bc3c60" + "f149a824-fd51-470d-aab5-4e9fdb2e3ac5" ], "x-ms-correlation-request-id": [ - "3c4177e2-c12a-4e18-b880-c45de9bc3c60" + "f149a824-fd51-470d-aab5-4e9fdb2e3ac5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041825Z:3c4177e2-c12a-4e18-b880-c45de9bc3c60" + "WESTEUROPE:20150827T112743Z:f149a824-fd51-470d-aab5-4e9fdb2e3ac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1504,7 +1504,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:24 GMT" + "Thu, 27 Aug 2015 11:27:43 GMT" ] }, "StatusCode": 200 @@ -1519,10 +1519,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-08-13T04:18:06.2463852Z\",\r\n \"duration\": \"PT36.0077895S\",\r\n \"trackingId\": \"470f824c-eefd-4144-90a4-b1e0d6b50f2d\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:36.2498918Z\",\r\n \"duration\": \"PT40.8629523S\",\r\n \"trackingId\": \"ae50a39a-9a60-4d19-b9b6-2b32fe1c1ff3\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" @@ -1534,16 +1534,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14500" ], "x-ms-request-id": [ - "2845da0d-dc3d-4433-973d-f9b98105cbc3" + "49b5da77-badd-42ad-b19b-fbde81043602" ], "x-ms-correlation-request-id": [ - "2845da0d-dc3d-4433-973d-f9b98105cbc3" + "49b5da77-badd-42ad-b19b-fbde81043602" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041828Z:2845da0d-dc3d-4433-973d-f9b98105cbc3" + "WESTEUROPE:20150827T112748Z:49b5da77-badd-42ad-b19b-fbde81043602" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1552,7 +1552,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:27 GMT" + "Thu, 27 Aug 2015 11:27:47 GMT" ] }, "StatusCode": 200 @@ -1567,10 +1567,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-08-13T04:18:06.2463852Z\",\r\n \"duration\": \"PT36.0077895S\",\r\n \"trackingId\": \"470f824c-eefd-4144-90a4-b1e0d6b50f2d\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:36.2498918Z\",\r\n \"duration\": \"PT40.8629523S\",\r\n \"trackingId\": \"ae50a39a-9a60-4d19-b9b6-2b32fe1c1ff3\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" @@ -1582,16 +1582,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14498" ], "x-ms-request-id": [ - "7d293b53-ed3b-4c66-9981-afd1ad464e65" + "5aeea2e9-af8b-436e-a37d-25cf1812ad75" ], "x-ms-correlation-request-id": [ - "7d293b53-ed3b-4c66-9981-afd1ad464e65" + "5aeea2e9-af8b-436e-a37d-25cf1812ad75" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041832Z:7d293b53-ed3b-4c66-9981-afd1ad464e65" + "WESTEUROPE:20150827T112752Z:5aeea2e9-af8b-436e-a37d-25cf1812ad75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1600,7 +1600,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:32 GMT" + "Thu, 27 Aug 2015 11:27:51 GMT" ] }, "StatusCode": 200 @@ -1615,10 +1615,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-08-13T04:18:06.2463852Z\",\r\n \"duration\": \"PT36.0077895S\",\r\n \"trackingId\": \"470f824c-eefd-4144-90a4-b1e0d6b50f2d\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:36.2498918Z\",\r\n \"duration\": \"PT40.8629523S\",\r\n \"trackingId\": \"ae50a39a-9a60-4d19-b9b6-2b32fe1c1ff3\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" @@ -1630,16 +1630,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14496" ], "x-ms-request-id": [ - "f0758527-8f72-44a4-9ce1-50c9fb86e2e7" + "ce3ae33f-f0ac-4068-aa22-303521b4f916" ], "x-ms-correlation-request-id": [ - "f0758527-8f72-44a4-9ce1-50c9fb86e2e7" + "ce3ae33f-f0ac-4068-aa22-303521b4f916" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041836Z:f0758527-8f72-44a4-9ce1-50c9fb86e2e7" + "WESTEUROPE:20150827T112756Z:ce3ae33f-f0ac-4068-aa22-303521b4f916" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1648,7 +1648,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:36 GMT" + "Thu, 27 Aug 2015 11:27:55 GMT" ] }, "StatusCode": 200 @@ -1663,10 +1663,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-08-13T04:18:37.5164573Z\",\r\n \"duration\": \"PT1M7.2778616S\",\r\n \"trackingId\": \"a3e8668c-7c14-4c97-8e17-828965eaad8c\",\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-08-13T04:17:32.3828477Z\",\r\n \"duration\": \"PT2.1384455S\",\r\n \"trackingId\": \"3455b4b3-b110-49ab-babc-0fe85abdf8da\",\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-08-13T04:17:30.1657253Z\",\r\n \"duration\": \"PT38.6356368S\",\r\n \"trackingId\": \"903f74d8-2817-4d7e-9065-358faea0843e\",\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-08-27T11:27:36.2498918Z\",\r\n \"duration\": \"PT40.8629523S\",\r\n \"trackingId\": \"ae50a39a-9a60-4d19-b9b6-2b32fe1c1ff3\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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": [ - "2104" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1678,16 +1678,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14494" ], "x-ms-request-id": [ - "15390890-080c-41ef-bf5a-40a887aca579" + "ef92527c-eeaf-40cc-8c34-a91d73d39462" ], "x-ms-correlation-request-id": [ - "15390890-080c-41ef-bf5a-40a887aca579" + "ef92527c-eeaf-40cc-8c34-a91d73d39462" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041840Z:15390890-080c-41ef-bf5a-40a887aca579" + "WESTEUROPE:20150827T112800Z:ef92527c-eeaf-40cc-8c34-a91d73d39462" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1696,14 +1696,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:40 GMT" + "Thu, 27 Aug 2015 11:27:59 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": { @@ -1711,10 +1711,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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:27:36.2498918Z\",\r\n \"duration\": \"PT40.8629523S\",\r\n \"trackingId\": \"ae50a39a-9a60-4d19-b9b6-2b32fe1c1ff3\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1726,16 +1726,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14491" ], "x-ms-request-id": [ - "4a4b8a36-9c1f-417d-b9e0-5d226b6b8fdb" + "b0fe3d7a-21f7-42fa-9a29-9ac25ec713c8" ], "x-ms-correlation-request-id": [ - "4a4b8a36-9c1f-417d-b9e0-5d226b6b8fdb" + "b0fe3d7a-21f7-42fa-9a29-9ac25ec713c8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041652Z:4a4b8a36-9c1f-417d-b9e0-5d226b6b8fdb" + "WESTEUROPE:20150827T112804Z:b0fe3d7a-21f7-42fa-9a29-9ac25ec713c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1744,14 +1744,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:16:51 GMT" + "Thu, 27 Aug 2015 11:28:03 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": { @@ -1759,10 +1759,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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:27:36.2498918Z\",\r\n \"duration\": \"PT40.8629523S\",\r\n \"trackingId\": \"ae50a39a-9a60-4d19-b9b6-2b32fe1c1ff3\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1774,16 +1774,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14489" ], "x-ms-request-id": [ - "da7cfe17-6946-4e50-8468-ce955fce0708" + "7576015e-e9b3-4557-966f-6010f5b3d267" ], "x-ms-correlation-request-id": [ - "da7cfe17-6946-4e50-8468-ce955fce0708" + "7576015e-e9b3-4557-966f-6010f5b3d267" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041655Z:da7cfe17-6946-4e50-8468-ce955fce0708" + "WESTEUROPE:20150827T112808Z:7576015e-e9b3-4557-966f-6010f5b3d267" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1792,14 +1792,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:16:54 GMT" + "Thu, 27 Aug 2015 11:28:07 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": { @@ -1807,10 +1807,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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:28:08.6852517Z\",\r\n \"duration\": \"PT1M13.2983122S\",\r\n \"trackingId\": \"36d49836-86d9-4150-b1a3-577752ca0bd1\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1822,16 +1822,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14487" ], "x-ms-request-id": [ - "35d110bd-8d25-44ad-8378-16b9ccb95258" + "38661280-eedd-4d5c-8a6a-f28269078dc7" ], "x-ms-correlation-request-id": [ - "35d110bd-8d25-44ad-8378-16b9ccb95258" + "38661280-eedd-4d5c-8a6a-f28269078dc7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041659Z:35d110bd-8d25-44ad-8378-16b9ccb95258" + "WESTEUROPE:20150827T112812Z:38661280-eedd-4d5c-8a6a-f28269078dc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1840,14 +1840,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:16:58 GMT" + "Thu, 27 Aug 2015 11:28:11 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": { @@ -1855,10 +1855,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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:28:08.6852517Z\",\r\n \"duration\": \"PT1M13.2983122S\",\r\n \"trackingId\": \"36d49836-86d9-4150-b1a3-577752ca0bd1\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1870,16 +1870,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14485" ], "x-ms-request-id": [ - "e3527ed2-a68f-4f27-a08e-5f47a2d29da0" + "5657c64c-0aa9-4430-baa3-6a4b40ed2d96" ], "x-ms-correlation-request-id": [ - "e3527ed2-a68f-4f27-a08e-5f47a2d29da0" + "5657c64c-0aa9-4430-baa3-6a4b40ed2d96" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041702Z:e3527ed2-a68f-4f27-a08e-5f47a2d29da0" + "WESTEUROPE:20150827T112816Z:5657c64c-0aa9-4430-baa3-6a4b40ed2d96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1888,14 +1888,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:01 GMT" + "Thu, 27 Aug 2015 11:28:16 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": { @@ -1903,10 +1903,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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:28:08.6852517Z\",\r\n \"duration\": \"PT1M13.2983122S\",\r\n \"trackingId\": \"36d49836-86d9-4150-b1a3-577752ca0bd1\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1918,16 +1918,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14483" ], "x-ms-request-id": [ - "c5b4db97-6ec9-4e04-a920-8a5fa0ca97b8" + "e31d59f4-d28b-40d2-83ac-84b9bb597ff3" ], "x-ms-correlation-request-id": [ - "c5b4db97-6ec9-4e04-a920-8a5fa0ca97b8" + "e31d59f4-d28b-40d2-83ac-84b9bb597ff3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041706Z:c5b4db97-6ec9-4e04-a920-8a5fa0ca97b8" + "WESTEUROPE:20150827T112820Z:e31d59f4-d28b-40d2-83ac-84b9bb597ff3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1936,14 +1936,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:05 GMT" + "Thu, 27 Aug 2015 11:28:20 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": { @@ -1951,10 +1951,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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:28:08.6852517Z\",\r\n \"duration\": \"PT1M13.2983122S\",\r\n \"trackingId\": \"36d49836-86d9-4150-b1a3-577752ca0bd1\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1966,16 +1966,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14479" ], "x-ms-request-id": [ - "6b97a8ae-1381-487e-bcbc-9213b0160c1a" + "fcc4ddd4-b71a-460d-988c-2b02add2fbd4" ], "x-ms-correlation-request-id": [ - "6b97a8ae-1381-487e-bcbc-9213b0160c1a" + "fcc4ddd4-b71a-460d-988c-2b02add2fbd4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041709Z:6b97a8ae-1381-487e-bcbc-9213b0160c1a" + "WESTEUROPE:20150827T112825Z:fcc4ddd4-b71a-460d-988c-2b02add2fbd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1984,14 +1984,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:09 GMT" + "Thu, 27 Aug 2015 11:28:24 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": { @@ -1999,10 +1999,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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:28:08.6852517Z\",\r\n \"duration\": \"PT1M13.2983122S\",\r\n \"trackingId\": \"36d49836-86d9-4150-b1a3-577752ca0bd1\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2014,16 +2014,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14477" ], "x-ms-request-id": [ - "59d26947-605a-4f4d-99aa-290e57765663" + "bd79b57a-f56c-4c63-bdbb-8805371407e9" ], "x-ms-correlation-request-id": [ - "59d26947-605a-4f4d-99aa-290e57765663" + "bd79b57a-f56c-4c63-bdbb-8805371407e9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041712Z:59d26947-605a-4f4d-99aa-290e57765663" + "WESTEUROPE:20150827T112829Z:bd79b57a-f56c-4c63-bdbb-8805371407e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2032,14 +2032,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:12 GMT" + "Thu, 27 Aug 2015 11:28:29 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": { @@ -2047,10 +2047,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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:28:08.6852517Z\",\r\n \"duration\": \"PT1M13.2983122S\",\r\n \"trackingId\": \"36d49836-86d9-4150-b1a3-577752ca0bd1\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2062,16 +2062,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14475" ], "x-ms-request-id": [ - "67dc37e2-287c-4e27-8a1e-8dc777fb3953" + "d968c184-93e9-4ef0-9696-9b06f40e676c" ], "x-ms-correlation-request-id": [ - "67dc37e2-287c-4e27-8a1e-8dc777fb3953" + "d968c184-93e9-4ef0-9696-9b06f40e676c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041716Z:67dc37e2-287c-4e27-8a1e-8dc777fb3953" + "WESTEUROPE:20150827T112833Z:d968c184-93e9-4ef0-9696-9b06f40e676c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2080,14 +2080,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:16 GMT" + "Thu, 27 Aug 2015 11:28:33 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": { @@ -2095,10 +2095,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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:28:08.6852517Z\",\r\n \"duration\": \"PT1M13.2983122S\",\r\n \"trackingId\": \"36d49836-86d9-4150-b1a3-577752ca0bd1\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2110,16 +2110,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14473" ], "x-ms-request-id": [ - "ceb0d20d-4709-4fbb-9959-7dce2f01e92a" + "28da6c76-af91-437b-bd8f-cfeec995ed57" ], "x-ms-correlation-request-id": [ - "ceb0d20d-4709-4fbb-9959-7dce2f01e92a" + "28da6c76-af91-437b-bd8f-cfeec995ed57" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041720Z:ceb0d20d-4709-4fbb-9959-7dce2f01e92a" + "WESTEUROPE:20150827T112837Z:28da6c76-af91-437b-bd8f-cfeec995ed57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2128,14 +2128,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:20 GMT" + "Thu, 27 Aug 2015 11:28: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": { @@ -2143,10 +2143,154 @@ "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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:28:08.6852517Z\",\r\n \"duration\": \"PT1M13.2983122S\",\r\n \"trackingId\": \"36d49836-86d9-4150-b1a3-577752ca0bd1\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + "2103" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14470" + ], + "x-ms-request-id": [ + "bb03ba5e-5adf-4351-9cbc-a6f41cb98d26" + ], + "x-ms-correlation-request-id": [ + "bb03ba5e-5adf-4351-9cbc-a6f41cb98d26" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112841Z:bb03ba5e-5adf-4351-9cbc-a6f41cb98d26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "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": { + "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-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:28:42.114383Z\",\r\n \"duration\": \"PT1M46.7274435S\",\r\n \"trackingId\": \"4a5740c7-7923-4e36-93dd-8bbf70b379c4\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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": [ + "2101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14468" + ], + "x-ms-request-id": [ + "db0d502a-3f29-45dd-a106-6ae7dee52aa2" + ], + "x-ms-correlation-request-id": [ + "db0d502a-3f29-45dd-a106-6ae7dee52aa2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112845Z:db0d502a-3f29-45dd-a106-6ae7dee52aa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:45 GMT" + ] + }, + "StatusCode": 200 + }, + { + "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": { + "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-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:28:49.1756955Z\",\r\n \"duration\": \"PT1M53.788756S\",\r\n \"trackingId\": \"49906b1c-58ee-418b-9539-815319b27e65\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14466" + ], + "x-ms-request-id": [ + "24e35b09-5c47-453d-a94b-ebdc968497ba" + ], + "x-ms-correlation-request-id": [ + "24e35b09-5c47-453d-a94b-ebdc968497ba" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112849Z:24e35b09-5c47-453d-a94b-ebdc968497ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "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": { + "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-rg51792/deployments/sql-ddm-test-env-setup/operations/305E0C3D428BB792\",\r\n \"operationId\": \"305E0C3D428BB792\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:28:49.1756955Z\",\r\n \"duration\": \"PT1M53.788756S\",\r\n \"trackingId\": \"49906b1c-58ee-418b-9539-815319b27e65\",\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-08-27T11:26:59.5214908Z\",\r\n \"duration\": \"PT4.1307063S\",\r\n \"trackingId\": \"12d21221-0f57-4936-9001-ee1bbe994e66\",\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-08-27T11:26:55.237867Z\",\r\n \"duration\": \"PT50.9897049S\",\r\n \"trackingId\": \"803c936b-eeac-4426-aa85-26d0fd17a651\",\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" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2158,16 +2302,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14464" ], "x-ms-request-id": [ - "62e4284c-688b-463a-bedd-8aa1a15258d1" + "8f8ceda0-98b1-4df5-8431-027ca76acc4d" ], "x-ms-correlation-request-id": [ - "62e4284c-688b-463a-bedd-8aa1a15258d1" + "8f8ceda0-98b1-4df5-8431-027ca76acc4d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041724Z:62e4284c-688b-463a-bedd-8aa1a15258d1" + "WESTEUROPE:20150827T112853Z:8f8ceda0-98b1-4df5-8431-027ca76acc4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2176,7 +2320,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:23 GMT" + "Thu, 27 Aug 2015 11:28:53 GMT" ] }, "StatusCode": 200 @@ -2191,10 +2335,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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:25:59.2268519Z\",\r\n \"duration\": \"PT2.4431675S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + "2303" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2206,16 +2350,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14564" ], "x-ms-request-id": [ - "ed9ae293-4964-4cc3-99e6-40e955e93ca9" + "59182d23-b453-4dfa-a1ed-f9673bbad99e" ], "x-ms-correlation-request-id": [ - "ed9ae293-4964-4cc3-99e6-40e955e93ca9" + "59182d23-b453-4dfa-a1ed-f9673bbad99e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041727Z:ed9ae293-4964-4cc3-99e6-40e955e93ca9" + "WESTEUROPE:20150827T112602Z:59182d23-b453-4dfa-a1ed-f9673bbad99e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2224,7 +2368,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:27 GMT" + "Thu, 27 Aug 2015 11:26:01 GMT" ] }, "StatusCode": 200 @@ -2239,7 +2383,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2254,16 +2398,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14562" ], "x-ms-request-id": [ - "e2d9ca38-050d-4a85-88d8-314fa6f39c1a" + "ca808131-1800-40a7-9b86-b6997462e856" ], "x-ms-correlation-request-id": [ - "e2d9ca38-050d-4a85-88d8-314fa6f39c1a" + "ca808131-1800-40a7-9b86-b6997462e856" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041731Z:e2d9ca38-050d-4a85-88d8-314fa6f39c1a" + "WESTEUROPE:20150827T112606Z:ca808131-1800-40a7-9b86-b6997462e856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2272,7 +2416,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:30 GMT" + "Thu, 27 Aug 2015 11:26:05 GMT" ] }, "StatusCode": 200 @@ -2287,7 +2431,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2302,16 +2446,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14559" ], "x-ms-request-id": [ - "6034336a-cf37-4cd9-ae1b-ac5acc790b8f" + "e2bc4261-a448-4ea1-89fa-3a4e685de142" ], "x-ms-correlation-request-id": [ - "6034336a-cf37-4cd9-ae1b-ac5acc790b8f" + "e2bc4261-a448-4ea1-89fa-3a4e685de142" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041734Z:6034336a-cf37-4cd9-ae1b-ac5acc790b8f" + "WESTEUROPE:20150827T112609Z:e2bc4261-a448-4ea1-89fa-3a4e685de142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2320,7 +2464,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:34 GMT" + "Thu, 27 Aug 2015 11:26:08 GMT" ] }, "StatusCode": 200 @@ -2335,7 +2479,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2350,16 +2494,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14557" ], "x-ms-request-id": [ - "2111c216-7a5b-4c76-a5ce-3e32db34a9c9" + "96c1c9c0-3d5b-4fcd-a257-11cde0933ed5" ], "x-ms-correlation-request-id": [ - "2111c216-7a5b-4c76-a5ce-3e32db34a9c9" + "96c1c9c0-3d5b-4fcd-a257-11cde0933ed5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041738Z:2111c216-7a5b-4c76-a5ce-3e32db34a9c9" + "WESTEUROPE:20150827T112613Z:96c1c9c0-3d5b-4fcd-a257-11cde0933ed5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2368,7 +2512,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:37 GMT" + "Thu, 27 Aug 2015 11:26:13 GMT" ] }, "StatusCode": 200 @@ -2383,7 +2527,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2398,16 +2542,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14554" ], "x-ms-request-id": [ - "01822107-bc2f-4ecf-ab4d-42d7aaf45904" + "6fe2baac-3f31-45e8-a943-384bce2d7e00" ], "x-ms-correlation-request-id": [ - "01822107-bc2f-4ecf-ab4d-42d7aaf45904" + "6fe2baac-3f31-45e8-a943-384bce2d7e00" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041742Z:01822107-bc2f-4ecf-ab4d-42d7aaf45904" + "WESTEUROPE:20150827T112617Z:6fe2baac-3f31-45e8-a943-384bce2d7e00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2416,7 +2560,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:41 GMT" + "Thu, 27 Aug 2015 11:26:17 GMT" ] }, "StatusCode": 200 @@ -2431,7 +2575,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2446,16 +2590,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14552" ], "x-ms-request-id": [ - "e6c278e1-a9da-4160-92f2-20c63c449c14" + "86e178ed-7bb3-44bc-b8b2-18f9fad39249" ], "x-ms-correlation-request-id": [ - "e6c278e1-a9da-4160-92f2-20c63c449c14" + "86e178ed-7bb3-44bc-b8b2-18f9fad39249" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041745Z:e6c278e1-a9da-4160-92f2-20c63c449c14" + "WESTEUROPE:20150827T112621Z:86e178ed-7bb3-44bc-b8b2-18f9fad39249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2464,7 +2608,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:44 GMT" + "Thu, 27 Aug 2015 11:26:21 GMT" ] }, "StatusCode": 200 @@ -2479,7 +2623,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2494,16 +2638,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14550" ], "x-ms-request-id": [ - "5fb5657c-4e4f-4267-9eb5-c78f0f0f4201" + "9ed15f25-7113-46f7-b6e1-32740a8503e0" ], "x-ms-correlation-request-id": [ - "5fb5657c-4e4f-4267-9eb5-c78f0f0f4201" + "9ed15f25-7113-46f7-b6e1-32740a8503e0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041749Z:5fb5657c-4e4f-4267-9eb5-c78f0f0f4201" + "WESTEUROPE:20150827T112625Z:9ed15f25-7113-46f7-b6e1-32740a8503e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2512,7 +2656,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:48 GMT" + "Thu, 27 Aug 2015 11:26:24 GMT" ] }, "StatusCode": 200 @@ -2527,7 +2671,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2542,16 +2686,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14548" ], "x-ms-request-id": [ - "9f63f109-18ba-4106-aea5-68ba82d6c903" + "d820d9f3-5714-44ad-8f7a-2f5f50cbe2c8" ], "x-ms-correlation-request-id": [ - "9f63f109-18ba-4106-aea5-68ba82d6c903" + "d820d9f3-5714-44ad-8f7a-2f5f50cbe2c8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041752Z:9f63f109-18ba-4106-aea5-68ba82d6c903" + "WESTEUROPE:20150827T112628Z:d820d9f3-5714-44ad-8f7a-2f5f50cbe2c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2560,7 +2704,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:52 GMT" + "Thu, 27 Aug 2015 11:26:28 GMT" ] }, "StatusCode": 200 @@ -2575,7 +2719,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2590,16 +2734,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14546" ], "x-ms-request-id": [ - "ff5ee616-8100-47ff-a84c-db2ba097f71a" + "5e1873e8-ae7f-464b-9aec-48b3676ecaf0" ], "x-ms-correlation-request-id": [ - "ff5ee616-8100-47ff-a84c-db2ba097f71a" + "5e1873e8-ae7f-464b-9aec-48b3676ecaf0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041756Z:ff5ee616-8100-47ff-a84c-db2ba097f71a" + "WESTEUROPE:20150827T112632Z:5e1873e8-ae7f-464b-9aec-48b3676ecaf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2608,7 +2752,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:17:55 GMT" + "Thu, 27 Aug 2015 11:26:32 GMT" ] }, "StatusCode": 200 @@ -2623,7 +2767,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2638,16 +2782,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14543" ], "x-ms-request-id": [ - "2c212105-7941-4308-9150-b7e35f5f71b3" + "c795b8f3-be48-4c0f-8154-c59d078ba4c9" ], "x-ms-correlation-request-id": [ - "2c212105-7941-4308-9150-b7e35f5f71b3" + "c795b8f3-be48-4c0f-8154-c59d078ba4c9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041800Z:2c212105-7941-4308-9150-b7e35f5f71b3" + "WESTEUROPE:20150827T112636Z:c795b8f3-be48-4c0f-8154-c59d078ba4c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2656,7 +2800,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:00 GMT" + "Thu, 27 Aug 2015 11:26:36 GMT" ] }, "StatusCode": 200 @@ -2671,7 +2815,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2686,16 +2830,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14541" ], "x-ms-request-id": [ - "7a77103d-93a7-40c8-a505-e83fb3207054" + "a7b10b5d-a25e-4255-b1b3-1033a76a2996" ], "x-ms-correlation-request-id": [ - "7a77103d-93a7-40c8-a505-e83fb3207054" + "a7b10b5d-a25e-4255-b1b3-1033a76a2996" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041803Z:7a77103d-93a7-40c8-a505-e83fb3207054" + "WESTEUROPE:20150827T112640Z:a7b10b5d-a25e-4255-b1b3-1033a76a2996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2704,7 +2848,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:03 GMT" + "Thu, 27 Aug 2015 11:26:39 GMT" ] }, "StatusCode": 200 @@ -2719,7 +2863,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2734,16 +2878,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14539" ], "x-ms-request-id": [ - "d3f83235-19cb-464c-b14b-8f177654cc99" + "8f07141e-e2af-4269-8f46-d27c40ffb9a1" ], "x-ms-correlation-request-id": [ - "d3f83235-19cb-464c-b14b-8f177654cc99" + "8f07141e-e2af-4269-8f46-d27c40ffb9a1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041807Z:d3f83235-19cb-464c-b14b-8f177654cc99" + "WESTEUROPE:20150827T112644Z:8f07141e-e2af-4269-8f46-d27c40ffb9a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2752,7 +2896,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:07 GMT" + "Thu, 27 Aug 2015 11:26:43 GMT" ] }, "StatusCode": 200 @@ -2767,7 +2911,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2782,16 +2926,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14537" ], "x-ms-request-id": [ - "07ef102d-afe6-4f66-a0b8-e0b69e72a0d4" + "34b6d64e-bb78-48d9-aa3d-386806555a89" ], "x-ms-correlation-request-id": [ - "07ef102d-afe6-4f66-a0b8-e0b69e72a0d4" + "34b6d64e-bb78-48d9-aa3d-386806555a89" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041811Z:07ef102d-afe6-4f66-a0b8-e0b69e72a0d4" + "WESTEUROPE:20150827T112648Z:34b6d64e-bb78-48d9-aa3d-386806555a89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,7 +2944,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:10 GMT" + "Thu, 27 Aug 2015 11:26:47 GMT" ] }, "StatusCode": 200 @@ -2815,7 +2959,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2830,16 +2974,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14535" ], "x-ms-request-id": [ - "d347a82b-c4ef-4716-a6c8-2437c42a28b7" + "3e2f5ee6-42b5-44c0-8499-cff8e2501519" ], "x-ms-correlation-request-id": [ - "d347a82b-c4ef-4716-a6c8-2437c42a28b7" + "3e2f5ee6-42b5-44c0-8499-cff8e2501519" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041814Z:d347a82b-c4ef-4716-a6c8-2437c42a28b7" + "WESTEUROPE:20150827T112651Z:3e2f5ee6-42b5-44c0-8499-cff8e2501519" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2848,7 +2992,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:14 GMT" + "Thu, 27 Aug 2015 11:26:51 GMT" ] }, "StatusCode": 200 @@ -2863,7 +3007,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2878,16 +3022,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14530" ], "x-ms-request-id": [ - "87eafe1b-eae0-4772-9706-48fcd87301d4" + "34d9873a-7560-4953-be76-cd705c1a673d" ], "x-ms-correlation-request-id": [ - "87eafe1b-eae0-4772-9706-48fcd87301d4" + "34d9873a-7560-4953-be76-cd705c1a673d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041818Z:87eafe1b-eae0-4772-9706-48fcd87301d4" + "WESTEUROPE:20150827T112655Z:34d9873a-7560-4953-be76-cd705c1a673d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2896,7 +3040,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:17 GMT" + "Thu, 27 Aug 2015 11:26:54 GMT" ] }, "StatusCode": 200 @@ -2911,7 +3055,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2926,16 +3070,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14528" ], "x-ms-request-id": [ - "97ac7204-1472-4277-be9d-390b32c15767" + "be035222-096b-4c56-aecf-bf55d3872290" ], "x-ms-correlation-request-id": [ - "97ac7204-1472-4277-be9d-390b32c15767" + "be035222-096b-4c56-aecf-bf55d3872290" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041822Z:97ac7204-1472-4277-be9d-390b32c15767" + "WESTEUROPE:20150827T112659Z:be035222-096b-4c56-aecf-bf55d3872290" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2944,7 +3088,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:21 GMT" + "Thu, 27 Aug 2015 11:26:58 GMT" ] }, "StatusCode": 200 @@ -2959,7 +3103,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -2974,16 +3118,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14526" ], "x-ms-request-id": [ - "e5cf5494-b237-4664-bce5-b167e818986e" + "50be5ee7-1b3e-495e-89f2-bf64d4c81868" ], "x-ms-correlation-request-id": [ - "e5cf5494-b237-4664-bce5-b167e818986e" + "50be5ee7-1b3e-495e-89f2-bf64d4c81868" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041825Z:e5cf5494-b237-4664-bce5-b167e818986e" + "WESTEUROPE:20150827T112703Z:50be5ee7-1b3e-495e-89f2-bf64d4c81868" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2992,7 +3136,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:24 GMT" + "Thu, 27 Aug 2015 11:27:03 GMT" ] }, "StatusCode": 200 @@ -3007,7 +3151,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -3022,16 +3166,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14524" ], "x-ms-request-id": [ - "68607b54-28da-4347-9d45-e23dcea24d76" + "89589f8b-6ce5-445c-ab58-75f6ce333a03" ], "x-ms-correlation-request-id": [ - "68607b54-28da-4347-9d45-e23dcea24d76" + "89589f8b-6ce5-445c-ab58-75f6ce333a03" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041829Z:68607b54-28da-4347-9d45-e23dcea24d76" + "WESTEUROPE:20150827T112707Z:89589f8b-6ce5-445c-ab58-75f6ce333a03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3040,7 +3184,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:28 GMT" + "Thu, 27 Aug 2015 11:27:07 GMT" ] }, "StatusCode": 200 @@ -3055,7 +3199,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -3070,16 +3214,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14522" ], "x-ms-request-id": [ - "c599bb56-d4e5-458e-aff5-f6569bd2e741" + "98dfaa87-3c60-4d52-873f-1314fec461ab" ], "x-ms-correlation-request-id": [ - "c599bb56-d4e5-458e-aff5-f6569bd2e741" + "98dfaa87-3c60-4d52-873f-1314fec461ab" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041833Z:c599bb56-d4e5-458e-aff5-f6569bd2e741" + "WESTEUROPE:20150827T112711Z:98dfaa87-3c60-4d52-873f-1314fec461ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3088,7 +3232,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:33 GMT" + "Thu, 27 Aug 2015 11:27:11 GMT" ] }, "StatusCode": 200 @@ -3103,7 +3247,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-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-08-13T04:16:51.4047399Z\",\r\n \"duration\": \"PT3.2651846S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -3118,16 +3262,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14520" ], "x-ms-request-id": [ - "bc7cda57-ccf5-4a7b-8246-c840f6cc3e6a" + "707340ff-8689-4513-ae5d-2ff27a21dd16" ], "x-ms-correlation-request-id": [ - "bc7cda57-ccf5-4a7b-8246-c840f6cc3e6a" + "707340ff-8689-4513-ae5d-2ff27a21dd16" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041837Z:bc7cda57-ccf5-4a7b-8246-c840f6cc3e6a" + "WESTEUROPE:20150827T112715Z:707340ff-8689-4513-ae5d-2ff27a21dd16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3136,7 +3280,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:37 GMT" + "Thu, 27 Aug 2015 11:27:15 GMT" ] }, "StatusCode": 200 @@ -3151,10 +3295,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-08-13T04:18:38.2949114Z\",\r\n \"duration\": \"PT1M50.1553561S\",\r\n \"correlationId\": \"44e28483-7f0d-4e49-975e-4abde328dc20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3166,16 +3310,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14518" ], "x-ms-request-id": [ - "409f6bf7-4800-4c14-aa74-4093a2867540" + "81647133-31dc-4b38-ac2a-dae825ba6035" ], "x-ms-correlation-request-id": [ - "409f6bf7-4800-4c14-aa74-4093a2867540" + "81647133-31dc-4b38-ac2a-dae825ba6035" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041840Z:409f6bf7-4800-4c14-aa74-4093a2867540" + "WESTEUROPE:20150827T112720Z:81647133-31dc-4b38-ac2a-dae825ba6035" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3184,14 +3328,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:40 GMT" + "Thu, 27 Aug 2015 11:27:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -3199,10 +3343,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/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"name\": \"sql-dm-cmdlet-server51792\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"australiaeast\"\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 \"name\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"australiaeast\"\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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "618" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3214,16 +3358,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14513" ], "x-ms-request-id": [ - "3447bbf4-36cc-4bc3-9801-de7070a94655" + "f037ff0f-4495-432b-a570-f72aace0be92" ], "x-ms-correlation-request-id": [ - "3447bbf4-36cc-4bc3-9801-de7070a94655" + "f037ff0f-4495-432b-a570-f72aace0be92" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041843Z:3447bbf4-36cc-4bc3-9801-de7070a94655" + "WESTEUROPE:20150827T112724Z:f037ff0f-4495-432b-a570-f72aace0be92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3232,25 +3376,25 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:42 GMT" + "Thu, 27 Aug 2015 11:27:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE0LTA3LTAxLXByZXZpZXc=", + "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.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-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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "45" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3261,20 +3405,1124 @@ "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14511" ], "x-ms-request-id": [ - "southcentralus:75fd4d1a-b21a-4275-b8d9-2b693ac0d335" + "66559c63-4a32-438f-a20e-7d75f6c05951" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "x-ms-correlation-request-id": [ + "66559c63-4a32-438f-a20e-7d75f6c05951" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112728Z:66559c63-4a32-438f-a20e-7d75f6c05951" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:27:27 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14507" + ], + "x-ms-request-id": [ + "fc8ca439-a763-43da-a629-0ec42bef6c5e" + ], + "x-ms-correlation-request-id": [ + "fc8ca439-a763-43da-a629-0ec42bef6c5e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112732Z:fc8ca439-a763-43da-a629-0ec42bef6c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:27:31 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14505" + ], + "x-ms-request-id": [ + "96bb57bb-5f42-4cea-bab8-67115ed5bb1c" + ], + "x-ms-correlation-request-id": [ + "96bb57bb-5f42-4cea-bab8-67115ed5bb1c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112736Z:96bb57bb-5f42-4cea-bab8-67115ed5bb1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:27:36 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14503" + ], + "x-ms-request-id": [ + "1aeaa262-8b8e-40d8-b531-4ece510c2189" + ], + "x-ms-correlation-request-id": [ + "1aeaa262-8b8e-40d8-b531-4ece510c2189" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112740Z:1aeaa262-8b8e-40d8-b531-4ece510c2189" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:27:40 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14501" + ], + "x-ms-request-id": [ + "5a1fabd2-53dd-4f58-9550-f01de03ba866" + ], + "x-ms-correlation-request-id": [ + "5a1fabd2-53dd-4f58-9550-f01de03ba866" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112744Z:5a1fabd2-53dd-4f58-9550-f01de03ba866" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:27:44 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14499" + ], + "x-ms-request-id": [ + "6a1a6c2b-6742-4f52-8f74-f9ee9db522a8" + ], + "x-ms-correlation-request-id": [ + "6a1a6c2b-6742-4f52-8f74-f9ee9db522a8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112748Z:6a1a6c2b-6742-4f52-8f74-f9ee9db522a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:27:48 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14497" + ], + "x-ms-request-id": [ + "99e2bc44-51fe-427f-808d-3590086130dc" + ], + "x-ms-correlation-request-id": [ + "99e2bc44-51fe-427f-808d-3590086130dc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112752Z:99e2bc44-51fe-427f-808d-3590086130dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:27:52 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14495" + ], + "x-ms-request-id": [ + "dd17f06a-be8d-4158-956b-040aa2198ed9" + ], + "x-ms-correlation-request-id": [ + "dd17f06a-be8d-4158-956b-040aa2198ed9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112757Z:dd17f06a-be8d-4158-956b-040aa2198ed9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:27:56 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14493" + ], + "x-ms-request-id": [ + "e8733c74-631b-4d54-b222-6caa506870db" + ], + "x-ms-correlation-request-id": [ + "e8733c74-631b-4d54-b222-6caa506870db" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112801Z:e8733c74-631b-4d54-b222-6caa506870db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:00 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14490" + ], + "x-ms-request-id": [ + "92ac379f-e8ea-40d6-8e1a-74fb07201830" + ], + "x-ms-correlation-request-id": [ + "92ac379f-e8ea-40d6-8e1a-74fb07201830" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112805Z:92ac379f-e8ea-40d6-8e1a-74fb07201830" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:04 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14488" + ], + "x-ms-request-id": [ + "fcb2cc07-231e-463d-afd6-c75602e15cc2" + ], + "x-ms-correlation-request-id": [ + "fcb2cc07-231e-463d-afd6-c75602e15cc2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112809Z:fcb2cc07-231e-463d-afd6-c75602e15cc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:08 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14486" + ], + "x-ms-request-id": [ + "8cd716ca-fde7-489d-972a-f80b2f8c8cc2" + ], + "x-ms-correlation-request-id": [ + "8cd716ca-fde7-489d-972a-f80b2f8c8cc2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112813Z:8cd716ca-fde7-489d-972a-f80b2f8c8cc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:12 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14484" + ], + "x-ms-request-id": [ + "8efb7905-6367-40e4-94a1-b5be6d95833d" + ], + "x-ms-correlation-request-id": [ + "8efb7905-6367-40e4-94a1-b5be6d95833d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112817Z:8efb7905-6367-40e4-94a1-b5be6d95833d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:16 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14482" + ], + "x-ms-request-id": [ + "d83f42c5-f492-472a-9245-d3aff2882cbd" + ], + "x-ms-correlation-request-id": [ + "d83f42c5-f492-472a-9245-d3aff2882cbd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112821Z:d83f42c5-f492-472a-9245-d3aff2882cbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:20 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14478" + ], + "x-ms-request-id": [ + "6252bc71-8819-45af-828f-13043d17abf9" + ], + "x-ms-correlation-request-id": [ + "6252bc71-8819-45af-828f-13043d17abf9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112825Z:6252bc71-8819-45af-828f-13043d17abf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:24 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14476" + ], + "x-ms-request-id": [ + "908951c1-a214-44fd-b8bd-91ee1e878b1f" + ], + "x-ms-correlation-request-id": [ + "908951c1-a214-44fd-b8bd-91ee1e878b1f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112829Z:908951c1-a214-44fd-b8bd-91ee1e878b1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:29 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14474" + ], + "x-ms-request-id": [ + "bdc6baa6-3638-4c3a-9e54-6c1a580ddfa2" + ], + "x-ms-correlation-request-id": [ + "bdc6baa6-3638-4c3a-9e54-6c1a580ddfa2" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112834Z:bdc6baa6-3638-4c3a-9e54-6c1a580ddfa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:34 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14472" + ], + "x-ms-request-id": [ + "de34a6cb-ad3b-4f61-b5b9-dd0117469623" + ], + "x-ms-correlation-request-id": [ + "de34a6cb-ad3b-4f61-b5b9-dd0117469623" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112838Z:de34a6cb-ad3b-4f61-b5b9-dd0117469623" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28: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", + "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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14469" + ], + "x-ms-request-id": [ + "0abda2f4-7ed5-4283-bd29-dd6af9bd195e" + ], + "x-ms-correlation-request-id": [ + "0abda2f4-7ed5-4283-bd29-dd6af9bd195e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112842Z:0abda2f4-7ed5-4283-bd29-dd6af9bd195e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:41 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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14467" + ], + "x-ms-request-id": [ + "c889d3ce-16d4-4a55-8d2d-b7cafc6e6f13" + ], + "x-ms-correlation-request-id": [ + "c889d3ce-16d4-4a55-8d2d-b7cafc6e6f13" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112846Z:c889d3ce-16d4-4a55-8d2d-b7cafc6e6f13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28: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-08-27T11:26:04.1149535Z\",\r\n \"duration\": \"PT7.3312691S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14465" + ], + "x-ms-request-id": [ + "0cdb2759-5e15-4f3d-a1c5-d3359b18abbd" + ], + "x-ms-correlation-request-id": [ + "0cdb2759-5e15-4f3d-a1c5-d3359b18abbd" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112850Z:0cdb2759-5e15-4f3d-a1c5-d3359b18abbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:50 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-08-27T11:28:52.2673034Z\",\r\n \"duration\": \"PT2M55.483619S\",\r\n \"correlationId\": \"342751df-183e-4c98-88c5-9d124d4eb3b5\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ + "2567" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14463" + ], + "x-ms-request-id": [ + "d3e35824-affb-48dc-a45d-d95ed9c9cece" + ], + "x-ms-correlation-request-id": [ + "d3e35824-affb-48dc-a45d-d95ed9c9cece" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112854Z:d3e35824-affb-48dc-a45d-d95ed9c9cece" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg51792/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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-rg51792/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server51792\",\r\n \"name\": \"sql-dm-cmdlet-server51792\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"australiaeast\"\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 \"name\": \"sql-dm-cmdlet-server51792/sql-dm-cmdlet-db51792\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"australiaeast\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "618" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14462" + ], + "x-ms-request-id": [ + "95724784-6fb3-4e07-a875-6b65ed62267d" + ], + "x-ms-correlation-request-id": [ + "95724784-6fb3-4e07-a875-6b65ed62267d" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T112856Z:95724784-6fb3-4e07-a875-6b65ed62267d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:28:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg51792/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUxNzkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE0LTA3LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "northeurope:7fc0685f-a4e5-4255-aa9e-3323628a1f73" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" ], "x-ms-correlation-request-id": [ - "9aa0540f-dd24-451c-878b-553ee9aea40f" + "5b4a9fa2-607f-44c9-ac0c-e7010a18480e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041844Z:9aa0540f-dd24-451c-878b-553ee9aea40f" + "NORTHEUROPE:20150827T112858Z:5b4a9fa2-607f-44c9-ac0c-e7010a18480e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3283,7 +4531,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:43 GMT" + "Thu, 27 Aug 2015 11:28:57 GMT" ] }, "StatusCode": 200 @@ -3298,7 +4546,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a0a3d030-40e5-4f70-9ab4-e57a6336d83b" + "5663494a-0813-4a44-bdd9-3a3490a461fa" ] }, "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}", @@ -3310,7 +4558,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "be0ec33c-aaed-4b77-9ce6-088837f0ddb8" + "b258066f-1f42-43a0-b59e-0c98d75aec52" ], "X-Content-Type-Options": [ "nosniff" @@ -3325,16 +4573,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "e8347d7d-adfe-4eca-bdfe-160b8803fafc" + "96d40294-aa58-4d3b-9219-2ff72b05077d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041849Z:e8347d7d-adfe-4eca-bdfe-160b8803fafc" + "NORTHEUROPE:20150827T112907Z:96d40294-aa58-4d3b-9219-2ff72b05077d" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:49 GMT" + "Thu, 27 Aug 2015 11:29:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3352,7 +4600,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "12454b80-427d-47f3-8ee5-f1e430dd7ea2" + "f424dda2-5977-404f-80c8-e378f5b8b5e9" ] }, "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}", @@ -3364,7 +4612,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "25f5545e-ff45-4c52-8bf7-fe6aa0b45efe" + "17c1703c-e40c-4937-b88f-6c35eba2e7b3" ], "X-Content-Type-Options": [ "nosniff" @@ -3379,16 +4627,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "21a86b47-1c6c-4449-88c7-dc34a2a6f573" + "8d36e732-9391-4aa8-abc4-2bbc05450b68" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041855Z:21a86b47-1c6c-4449-88c7-dc34a2a6f573" + "NORTHEUROPE:20150827T112916Z:8d36e732-9391-4aa8-abc4-2bbc05450b68" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:55 GMT" + "Thu, 27 Aug 2015 11:29:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3406,7 +4654,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8c46d3c1-57fb-4598-bc72-9f495f1360c7" + "12b6385f-eb79-473d-978b-3af72f705f1e" ] }, "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}", @@ -3418,7 +4666,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e1dab825-250c-41dd-8cc0-dcf657f68b1d" + "91d29176-bf36-46d7-a0da-be59f6a303b8" ], "X-Content-Type-Options": [ "nosniff" @@ -3433,16 +4681,16 @@ "14992" ], "x-ms-correlation-request-id": [ - "281a0f4c-b4df-42e0-aa62-f8240e2598b0" + "1d14d756-ac90-4cde-9891-b52ef6b7b1e6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041904Z:281a0f4c-b4df-42e0-aa62-f8240e2598b0" + "NORTHEUROPE:20150827T112926Z:1d14d756-ac90-4cde-9891-b52ef6b7b1e6" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:19:04 GMT" + "Thu, 27 Aug 2015 11:29:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3466,7 +4714,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a0a3d030-40e5-4f70-9ab4-e57a6336d83b" + "5663494a-0813-4a44-bdd9-3a3490a461fa" ] }, "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}", @@ -3478,7 +4726,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "44f082a1-68ba-4542-8232-61289c1d8f72" + "8fa659b6-6396-4ba3-8bc9-88e372ab1bde" ], "X-Content-Type-Options": [ "nosniff" @@ -3496,16 +4744,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "81ee8fe2-39d0-47a6-a61e-576c36282319" + "a2e2042a-af7f-4959-bd8d-3c99934d85ff" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041852Z:81ee8fe2-39d0-47a6-a61e-576c36282319" + "NORTHEUROPE:20150827T112910Z:a2e2042a-af7f-4959-bd8d-3c99934d85ff" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:51 GMT" + "Thu, 27 Aug 2015 11:29:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3523,7 +4771,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "9f439628-875a-4c11-9ba3-a6ca22028d72" + "59d3e6ff-87c7-4ff8-8440-6bc950f6ae06" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3535,7 +4783,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c6cc7894-b9a2-483a-8980-2f904200968e" + "0ee12bf0-e862-40e4-8c06-685379edca48" ], "X-Content-Type-Options": [ "nosniff" @@ -3550,16 +4798,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "ea0e9a87-0564-4445-8683-925fc9a972bf" + "b3bee9de-6313-40a7-9284-7856e661184b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041853Z:ea0e9a87-0564-4445-8683-925fc9a972bf" + "NORTHEUROPE:20150827T112912Z:b3bee9de-6313-40a7-9284-7856e661184b" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:52 GMT" + "Thu, 27 Aug 2015 11:29:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3577,7 +4825,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "12454b80-427d-47f3-8ee5-f1e430dd7ea2" + "f424dda2-5977-404f-80c8-e378f5b8b5e9" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3589,7 +4837,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "7eaeb8c8-1af5-4142-9f38-93aac265956b" + "1b8a6888-e82e-4883-8286-1fc9862265dc" ], "X-Content-Type-Options": [ "nosniff" @@ -3604,16 +4852,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "7d0eda0c-c7a6-4800-89fa-8a830a177c39" + "55f34dd8-fdb1-493b-a385-775bcd47bcd3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041854Z:7d0eda0c-c7a6-4800-89fa-8a830a177c39" + "NORTHEUROPE:20150827T112914Z:55f34dd8-fdb1-493b-a385-775bcd47bcd3" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:53 GMT" + "Thu, 27 Aug 2015 11:29:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3631,7 +4879,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "9b51e43a-12d8-4bbd-8ed3-01f92113ff5f" + "0421ab81-8d50-45eb-9413-9d56b2477162" ] }, "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}", @@ -3643,7 +4891,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a45f99e2-dcc5-4692-9768-f228899f83b7" + "f3ddb228-9533-4d31-a3c5-2b1a0d53c0d0" ], "X-Content-Type-Options": [ "nosniff" @@ -3658,16 +4906,16 @@ "14995" ], "x-ms-correlation-request-id": [ - "b8eb20a0-fea1-42b3-aab2-567c61eb5197" + "dbb65d10-dd8f-4bdb-9fd5-e21358f15461" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041900Z:b8eb20a0-fea1-42b3-aab2-567c61eb5197" + "NORTHEUROPE:20150827T112921Z:dbb65d10-dd8f-4bdb-9fd5-e21358f15461" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:19:00 GMT" + "Thu, 27 Aug 2015 11:29:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3685,7 +4933,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "b35d1c3d-1c0c-4f1f-ad63-28a88cd4a856" + "bbade48b-d219-4705-b9ae-8eb352a4f450" ] }, "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}", @@ -3697,7 +4945,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "05ad20f8-2456-4030-aedc-b3565e924da6" + "f27ca23f-c0c6-4b61-94a1-0b615b11b920" ], "X-Content-Type-Options": [ "nosniff" @@ -3712,16 +4960,16 @@ "14994" ], "x-ms-correlation-request-id": [ - "9291e284-a27b-4b50-9894-0e6b0683c29d" + "1a439d14-93c6-4507-9f68-e7c65a341e2d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041902Z:9291e284-a27b-4b50-9894-0e6b0683c29d" + "NORTHEUROPE:20150827T112923Z:1a439d14-93c6-4507-9f68-e7c65a341e2d" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:19:01 GMT" + "Thu, 27 Aug 2015 11:29:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3739,7 +4987,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8c46d3c1-57fb-4598-bc72-9f495f1360c7" + "12b6385f-eb79-473d-978b-3af72f705f1e" ] }, "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}", @@ -3751,7 +4999,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5efd956c-81a2-49fc-9c19-9ed51687d1c6" + "2a073cb7-f3cf-4f6a-ad40-e38207c02d11" ], "X-Content-Type-Options": [ "nosniff" @@ -3766,16 +5014,16 @@ "14993" ], "x-ms-correlation-request-id": [ - "dcb309d0-baef-4cbe-bab9-ff8469b5c556" + "6d50682f-4ec8-41f9-ae54-7aa2acdaaf0c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041903Z:dcb309d0-baef-4cbe-bab9-ff8469b5c556" + "NORTHEUROPE:20150827T112925Z:6d50682f-4ec8-41f9-ae54-7aa2acdaaf0c" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:19:03 GMT" + "Thu, 27 Aug 2015 11:29:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3793,7 +5041,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "050bd86d-4d2a-4de0-ba9f-a13589e34390" + "3213a478-57cf-4226-9009-c2606cd48f9b" ] }, "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}", @@ -3805,7 +5053,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2dcb8675-08b1-44f9-8b43-0c179b640a28" + "b9debeab-aaf9-499c-af1a-f4f8150040a4" ], "X-Content-Type-Options": [ "nosniff" @@ -3820,16 +5068,16 @@ "14991" ], "x-ms-correlation-request-id": [ - "b6364eda-4ac3-4a63-8b52-fcad4555dae5" + "c92df234-ef05-4c6f-a43d-b5e34fe137b3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041908Z:b6364eda-4ac3-4a63-8b52-fcad4555dae5" + "NORTHEUROPE:20150827T112931Z:c92df234-ef05-4c6f-a43d-b5e34fe137b3" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:19:08 GMT" + "Thu, 27 Aug 2015 11:29:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3847,7 +5095,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "02f356e3-fbcb-460d-abbc-c79888b42447" + "9b73866c-b53c-4538-9c1f-862b3f5e44cb" ] }, "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}", @@ -3859,7 +5107,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "866da3be-896e-4df6-a655-a9040204af01" + "f0f3d7d2-f4df-40a7-932e-3314eea1ced2" ], "X-Content-Type-Options": [ "nosniff" @@ -3874,16 +5122,16 @@ "14990" ], "x-ms-correlation-request-id": [ - "84e53700-84a2-4886-b988-001908212e0b" + "02a4710e-1d25-457b-bcec-b4c895c487b6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041910Z:84e53700-84a2-4886-b988-001908212e0b" + "NORTHEUROPE:20150827T112933Z:02a4710e-1d25-457b-bcec-b4c895c487b6" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:19:09 GMT" + "Thu, 27 Aug 2015 11:29:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3901,7 +5149,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "04ad8dd7-5954-427f-9c24-22b321ea5851" + "3d5e11d5-9c23-4259-ad23-965b00453bfb" ] }, "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}", @@ -3913,7 +5161,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e1246bbc-fcbe-4aaa-868e-b1296a2edd12" + "62ab31a9-c2e9-4c12-bf1c-9d5ed781617d" ], "X-Content-Type-Options": [ "nosniff" @@ -3928,16 +5176,16 @@ "14989" ], "x-ms-correlation-request-id": [ - "b4b001bf-3a8c-45cc-b749-31e29db534fe" + "9c0fb116-673f-48e5-a83c-dde821551277" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041911Z:b4b001bf-3a8c-45cc-b749-31e29db534fe" + "NORTHEUROPE:20150827T112935Z:9c0fb116-673f-48e5-a83c-dde821551277" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:19:11 GMT" + "Thu, 27 Aug 2015 11:29:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3955,7 +5203,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7a00cda8-7582-4e10-b19e-526009d37477" + "a312bdfa-1fa6-435d-b05f-b410b71ce965" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3967,7 +5215,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "39d4438b-6f84-44ab-8e26-79fd29164a56" + "7bc750ec-bda8-4f88-bde8-9a6b6dbc6603" ], "X-Content-Type-Options": [ "nosniff" @@ -3982,16 +5230,16 @@ "14988" ], "x-ms-correlation-request-id": [ - "bfb200af-48c1-4dbd-a8f1-476579c2a7f3" + "59276438-e9a7-442a-bfc3-374db2802a80" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041914Z:bfb200af-48c1-4dbd-a8f1-476579c2a7f3" + "NORTHEUROPE:20150827T112939Z:59276438-e9a7-442a-bfc3-374db2802a80" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:19:14 GMT" + "Thu, 27 Aug 2015 11:29:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4009,7 +5257,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f65313ec-89a0-4135-adcc-a16636cd9cb0" + "cab9cc97-7827-4d00-942f-385bc843b448" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -4021,7 +5269,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b4826771-2e8b-4b2b-b966-4cd6254e91bd" + "509b17ed-592b-45f9-b47c-a096719f59b1" ], "X-Content-Type-Options": [ "nosniff" @@ -4036,16 +5284,16 @@ "14987" ], "x-ms-correlation-request-id": [ - "ea0ec711-f274-41b1-ab87-94a39986a967" + "37205d96-73a6-430a-8f8d-360eabf32cd4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041915Z:ea0ec711-f274-41b1-ab87-94a39986a967" + "NORTHEUROPE:20150827T112941Z:37205d96-73a6-430a-8f8d-360eabf32cd4" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:19:15 GMT" + "Thu, 27 Aug 2015 11:29:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4069,7 +5317,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "12454b80-427d-47f3-8ee5-f1e430dd7ea2" + "f424dda2-5977-404f-80c8-e378f5b8b5e9" ] }, "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\": 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}", @@ -4081,7 +5329,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "9d91bc87-c0a5-4279-b6ec-48d8d74cad5c" + "73604dd0-56ee-4d1a-8e38-43c173e4fcee" ], "X-Content-Type-Options": [ "nosniff" @@ -4099,16 +5347,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "e7e6bef8-ee10-49e5-b2e3-32440920935a" + "e23f1f44-6975-4cac-a8ff-ca6c99d2f0ad" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041859Z:e7e6bef8-ee10-49e5-b2e3-32440920935a" + "NORTHEUROPE:20150827T112919Z:e23f1f44-6975-4cac-a8ff-ca6c99d2f0ad" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:18:58 GMT" + "Thu, 27 Aug 2015 11:29:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4132,7 +5380,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8c46d3c1-57fb-4598-bc72-9f495f1360c7" + "12b6385f-eb79-473d-978b-3af72f705f1e" ] }, "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\": 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}", @@ -4144,7 +5392,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "23815147-8546-4064-b95c-f7f77e031e23" + "52427898-6bc2-46ff-bfaa-6a9d2fbec62f" ], "X-Content-Type-Options": [ "nosniff" @@ -4162,16 +5410,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "7791a696-99ae-482f-8e48-70246d2a779b" + "9c9ac965-6807-4e27-bf0f-fe05092744ec" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041907Z:7791a696-99ae-482f-8e48-70246d2a779b" + "NORTHEUROPE:20150827T112929Z:9c9ac965-6807-4e27-bf0f-fe05092744ec" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:19:07 GMT" + "Thu, 27 Aug 2015 11:29:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4189,7 +5437,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "04ad8dd7-5954-427f-9c24-22b321ea5851" + "3d5e11d5-9c23-4259-ad23-965b00453bfb" ] }, "ResponseBody": "", @@ -4201,7 +5449,7 @@ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "b092f0c1-a5f9-4d93-985d-f3166de377c3" + "59bd7fa5-0b66-49d1-87f8-bb18a9734fbc" ], "X-Content-Type-Options": [ "nosniff" @@ -4216,16 +5464,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "7fc7d16b-df27-4fae-ab2e-ef0e6bde8b1f" + "87ba930b-a39e-42bf-afb8-f8aec0022a54" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041912Z:7fc7d16b-df27-4fae-ab2e-ef0e6bde8b1f" + "NORTHEUROPE:20150827T112937Z:87ba930b-a39e-42bf-afb8-f8aec0022a54" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:19:12 GMT" + "Thu, 27 Aug 2015 11:29:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationFailures.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationFailures.json index ac40c419e372..1e0d8c13c710 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationFailures.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationFailures.json @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14567" ], "x-ms-request-id": [ - "2aefff80-d6f8-4a23-aae7-ed25ea423684" + "4f5dd37e-791e-44b0-8336-97412044810b" ], "x-ms-correlation-request-id": [ - "2aefff80-d6f8-4a23-aae7-ed25ea423684" + "4f5dd37e-791e-44b0-8336-97412044810b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040050Z:2aefff80-d6f8-4a23-aae7-ed25ea423684" + "WESTEUROPE:20150827T111010Z:4f5dd37e-791e-44b0-8336-97412044810b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:00:50 GMT" + "Thu, 27 Aug 2015 11:10:10 GMT" ] }, "StatusCode": 404 @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "c3866559-c1ad-4fc8-993a-79b58302c0c1" + "456a65aa-fa54-4939-8c60-84c8b8610832" ], "x-ms-correlation-request-id": [ - "c3866559-c1ad-4fc8-993a-79b58302c0c1" + "456a65aa-fa54-4939-8c60-84c8b8610832" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040053Z:c3866559-c1ad-4fc8-993a-79b58302c0c1" + "WESTEUROPE:20150827T111013Z:456a65aa-fa54-4939-8c60-84c8b8610832" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:00:52 GMT" + "Thu, 27 Aug 2015 11:10:13 GMT" ] }, "StatusCode": 201 @@ -121,7 +121,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-13T04:00:54.3475081Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"58e11d56-9165-4a46-876c-f12f496a3314\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-27T11:10:15.1871544Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"787100d9-02da-4001-b981-f8507e76453c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2295" @@ -136,16 +136,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "58e11d56-9165-4a46-876c-f12f496a3314" + "787100d9-02da-4001-b981-f8507e76453c" ], "x-ms-correlation-request-id": [ - "58e11d56-9165-4a46-876c-f12f496a3314" + "787100d9-02da-4001-b981-f8507e76453c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040054Z:58e11d56-9165-4a46-876c-f12f496a3314" + "WESTEUROPE:20150827T111015Z:787100d9-02da-4001-b981-f8507e76453c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:00:53 GMT" + "Thu, 27 Aug 2015 11:10:15 GMT" ] }, "StatusCode": 200 @@ -175,7 +175,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-13T04:00:57.2445036Z\",\r\n \"duration\": \"PT1.7217553S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-27T11:10:19.5383787Z\",\r\n \"duration\": \"PT3.0220371S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2303" @@ -190,16 +190,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "6d963352-6d06-4f02-878e-210d0c89f95d" + "47b19318-2850-4de1-9b1a-be0a7e320123" ], "x-ms-correlation-request-id": [ - "6d963352-6d06-4f02-878e-210d0c89f95d" + "47b19318-2850-4de1-9b1a-be0a7e320123" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040058Z:6d963352-6d06-4f02-878e-210d0c89f95d" + "WESTEUROPE:20150827T111021Z:47b19318-2850-4de1-9b1a-be0a7e320123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +208,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:00:57 GMT" + "Thu, 27 Aug 2015 11:10:20 GMT" ] }, "StatusCode": 201 @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14565" ], "x-ms-request-id": [ - "08c4d801-0383-46d9-8e8d-17ccd1c7d265" + "2bb87df5-c9d6-4f42-a2a9-57059f75863f" ], "x-ms-correlation-request-id": [ - "08c4d801-0383-46d9-8e8d-17ccd1c7d265" + "2bb87df5-c9d6-4f42-a2a9-57059f75863f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040059Z:08c4d801-0383-46d9-8e8d-17ccd1c7d265" + "WESTEUROPE:20150827T111022Z:2bb87df5-c9d6-4f42-a2a9-57059f75863f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,7 +256,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:00:58 GMT" + "Thu, 27 Aug 2015 11:10:21 GMT" ] }, "StatusCode": 200 @@ -286,16 +286,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14563" ], "x-ms-request-id": [ - "cc97def7-5266-4dc5-8803-c03bafc74712" + "69a911fa-43f9-400d-98c9-b74e595434bb" ], "x-ms-correlation-request-id": [ - "cc97def7-5266-4dc5-8803-c03bafc74712" + "69a911fa-43f9-400d-98c9-b74e595434bb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040102Z:cc97def7-5266-4dc5-8803-c03bafc74712" + "WESTEUROPE:20150827T111025Z:69a911fa-43f9-400d-98c9-b74e595434bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,7 +304,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:01 GMT" + "Thu, 27 Aug 2015 11:10:25 GMT" ] }, "StatusCode": 200 @@ -334,16 +334,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14561" ], "x-ms-request-id": [ - "989b80c3-aae1-4796-81a4-04bd5fc6df9c" + "8e6ad51f-2f23-4925-8c58-56d1c65b18f0" ], "x-ms-correlation-request-id": [ - "989b80c3-aae1-4796-81a4-04bd5fc6df9c" + "8e6ad51f-2f23-4925-8c58-56d1c65b18f0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040105Z:989b80c3-aae1-4796-81a4-04bd5fc6df9c" + "WESTEUROPE:20150827T111029Z:8e6ad51f-2f23-4925-8c58-56d1c65b18f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,7 +352,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:05 GMT" + "Thu, 27 Aug 2015 11:10:29 GMT" ] }, "StatusCode": 200 @@ -382,16 +382,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14558" ], "x-ms-request-id": [ - "1bd3cbbd-d146-469c-bb60-b8d88ae17c08" + "a6aab65d-3e1b-4160-bc50-87db83db536b" ], "x-ms-correlation-request-id": [ - "1bd3cbbd-d146-469c-bb60-b8d88ae17c08" + "a6aab65d-3e1b-4160-bc50-87db83db536b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040109Z:1bd3cbbd-d146-469c-bb60-b8d88ae17c08" + "WESTEUROPE:20150827T111034Z:a6aab65d-3e1b-4160-bc50-87db83db536b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,7 +400,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:08 GMT" + "Thu, 27 Aug 2015 11:10:33 GMT" ] }, "StatusCode": 200 @@ -430,16 +430,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14556" ], "x-ms-request-id": [ - "df19f8a6-f9a4-41d5-8bba-93e26c650fc9" + "1eea7682-dafb-4a9a-afd1-27f69882044d" ], "x-ms-correlation-request-id": [ - "df19f8a6-f9a4-41d5-8bba-93e26c650fc9" + "1eea7682-dafb-4a9a-afd1-27f69882044d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040112Z:df19f8a6-f9a4-41d5-8bba-93e26c650fc9" + "WESTEUROPE:20150827T111037Z:1eea7682-dafb-4a9a-afd1-27f69882044d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,7 +448,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:11 GMT" + "Thu, 27 Aug 2015 11:10:37 GMT" ] }, "StatusCode": 200 @@ -478,16 +478,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14554" ], "x-ms-request-id": [ - "a77371f6-9546-457c-8c78-e2022ed02595" + "7449309c-5aab-49b3-8098-074ce5ad403c" ], "x-ms-correlation-request-id": [ - "a77371f6-9546-457c-8c78-e2022ed02595" + "7449309c-5aab-49b3-8098-074ce5ad403c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040116Z:a77371f6-9546-457c-8c78-e2022ed02595" + "WESTEUROPE:20150827T111041Z:7449309c-5aab-49b3-8098-074ce5ad403c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,7 +496,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:15 GMT" + "Thu, 27 Aug 2015 11:10:40 GMT" ] }, "StatusCode": 200 @@ -526,16 +526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14552" ], "x-ms-request-id": [ - "44057720-bbce-4fae-a29c-5e6f2400febe" + "aca15378-5a62-41b9-8d92-9411b32a8387" ], "x-ms-correlation-request-id": [ - "44057720-bbce-4fae-a29c-5e6f2400febe" + "aca15378-5a62-41b9-8d92-9411b32a8387" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040119Z:44057720-bbce-4fae-a29c-5e6f2400febe" + "WESTEUROPE:20150827T111045Z:aca15378-5a62-41b9-8d92-9411b32a8387" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -544,7 +544,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:19 GMT" + "Thu, 27 Aug 2015 11:10:44 GMT" ] }, "StatusCode": 200 @@ -574,16 +574,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14550" ], "x-ms-request-id": [ - "f775227f-65aa-470c-874f-8692802a5cdb" + "12a0f091-2b62-4f54-8f31-3e762f1bcc40" ], "x-ms-correlation-request-id": [ - "f775227f-65aa-470c-874f-8692802a5cdb" + "12a0f091-2b62-4f54-8f31-3e762f1bcc40" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040123Z:f775227f-65aa-470c-874f-8692802a5cdb" + "WESTEUROPE:20150827T111049Z:12a0f091-2b62-4f54-8f31-3e762f1bcc40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592,7 +592,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:23 GMT" + "Thu, 27 Aug 2015 11:10:48 GMT" ] }, "StatusCode": 200 @@ -622,16 +622,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14547" ], "x-ms-request-id": [ - "d469b07a-817f-469e-b260-0353210fd003" + "b3482f13-51c1-4d46-b7cc-2d803461163d" ], "x-ms-correlation-request-id": [ - "d469b07a-817f-469e-b260-0353210fd003" + "b3482f13-51c1-4d46-b7cc-2d803461163d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040126Z:d469b07a-817f-469e-b260-0353210fd003" + "WESTEUROPE:20150827T111053Z:b3482f13-51c1-4d46-b7cc-2d803461163d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,7 +640,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:26 GMT" + "Thu, 27 Aug 2015 11:10:52 GMT" ] }, "StatusCode": 200 @@ -670,16 +670,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14545" ], "x-ms-request-id": [ - "80f481af-eedd-4868-85a1-c448632c7e87" + "8d8673fc-ab76-4499-9b3a-c3812d94bd58" ], "x-ms-correlation-request-id": [ - "80f481af-eedd-4868-85a1-c448632c7e87" + "8d8673fc-ab76-4499-9b3a-c3812d94bd58" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040130Z:80f481af-eedd-4868-85a1-c448632c7e87" + "WESTEUROPE:20150827T111057Z:8d8673fc-ab76-4499-9b3a-c3812d94bd58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -688,7 +688,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:29 GMT" + "Thu, 27 Aug 2015 11:10:56 GMT" ] }, "StatusCode": 200 @@ -718,16 +718,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14543" ], "x-ms-request-id": [ - "84d3efa1-8463-4134-8e3b-0f04e93dfea9" + "ef7880e5-99d5-4946-9e6f-14966e2b4fcd" ], "x-ms-correlation-request-id": [ - "84d3efa1-8463-4134-8e3b-0f04e93dfea9" + "ef7880e5-99d5-4946-9e6f-14966e2b4fcd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040133Z:84d3efa1-8463-4134-8e3b-0f04e93dfea9" + "WESTEUROPE:20150827T111101Z:ef7880e5-99d5-4946-9e6f-14966e2b4fcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:33 GMT" + "Thu, 27 Aug 2015 11:11:01 GMT" ] }, "StatusCode": 200 @@ -766,16 +766,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14541" ], "x-ms-request-id": [ - "91f3d870-ad60-4aa5-9991-d3e762c71ecf" + "aa148d97-8148-4e8b-9a0c-1d09cb5828be" ], "x-ms-correlation-request-id": [ - "91f3d870-ad60-4aa5-9991-d3e762c71ecf" + "aa148d97-8148-4e8b-9a0c-1d09cb5828be" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040137Z:91f3d870-ad60-4aa5-9991-d3e762c71ecf" + "WESTEUROPE:20150827T111105Z:aa148d97-8148-4e8b-9a0c-1d09cb5828be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -784,7 +784,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:36 GMT" + "Thu, 27 Aug 2015 11:11:05 GMT" ] }, "StatusCode": 200 @@ -799,10 +799,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-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "661" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -814,16 +814,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14539" ], "x-ms-request-id": [ - "a2b8a77f-c279-45a6-983f-b2d6261bee3c" + "5a7f4df6-edaa-4e35-85a2-f72b3d961d9e" ], "x-ms-correlation-request-id": [ - "a2b8a77f-c279-45a6-983f-b2d6261bee3c" + "5a7f4df6-edaa-4e35-85a2-f72b3d961d9e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040140Z:a2b8a77f-c279-45a6-983f-b2d6261bee3c" + "WESTEUROPE:20150827T111109Z:5a7f4df6-edaa-4e35-85a2-f72b3d961d9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -832,7 +832,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:40 GMT" + "Thu, 27 Aug 2015 11:11:09 GMT" ] }, "StatusCode": 200 @@ -847,10 +847,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-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "1387" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -862,16 +862,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14537" ], "x-ms-request-id": [ - "59508a96-489f-4624-a4ea-e8d473864a4c" + "54cf37db-630a-4e62-a6ef-643ff81f1b76" ], "x-ms-correlation-request-id": [ - "59508a96-489f-4624-a4ea-e8d473864a4c" + "54cf37db-630a-4e62-a6ef-643ff81f1b76" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040144Z:59508a96-489f-4624-a4ea-e8d473864a4c" + "WESTEUROPE:20150827T111113Z:54cf37db-630a-4e62-a6ef-643ff81f1b76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -880,7 +880,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:43 GMT" + "Thu, 27 Aug 2015 11:11:13 GMT" ] }, "StatusCode": 200 @@ -895,10 +895,58 @@ "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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:01:44.4960513Z\",\r\n \"duration\": \"PT5.4079851S\",\r\n \"trackingId\": \"8544712a-f70a-4ef4-b956-09de836b1063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2100" + "661" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14535" + ], + "x-ms-request-id": [ + "3e77e036-4e7a-44e0-a3c6-55151f6238f9" + ], + "x-ms-correlation-request-id": [ + "3e77e036-4e7a-44e0-a3c6-55151f6238f9" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T111117Z:3e77e036-4e7a-44e0-a3c6-55151f6238f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:11:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "661" ], "Content-Type": [ "application/json; charset=utf-8" @@ -910,16 +958,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14533" ], "x-ms-request-id": [ - "1b7390aa-d751-4638-92c5-2231aa0925a2" + "97c0bc27-7994-4c95-a346-cc027283f9ee" ], "x-ms-correlation-request-id": [ - "1b7390aa-d751-4638-92c5-2231aa0925a2" + "97c0bc27-7994-4c95-a346-cc027283f9ee" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040147Z:1b7390aa-d751-4638-92c5-2231aa0925a2" + "WESTEUROPE:20150827T111120Z:97c0bc27-7994-4c95-a346-cc027283f9ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -928,7 +976,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:47 GMT" + "Thu, 27 Aug 2015 11:11:20 GMT" ] }, "StatusCode": 200 @@ -943,7 +991,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:01:44.4960513Z\",\r\n \"duration\": \"PT5.4079851S\",\r\n \"trackingId\": \"8544712a-f70a-4ef4-b956-09de836b1063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:21.8702371Z\",\r\n \"duration\": \"PT6.6531297S\",\r\n \"trackingId\": \"d037dd87-704f-4639-906c-d098c270065b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2100" @@ -958,16 +1006,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14531" ], "x-ms-request-id": [ - "bad24d03-61cb-46c8-97af-5e5b7816c683" + "f0b0807e-2928-4083-a6ff-cf1e1150a364" ], "x-ms-correlation-request-id": [ - "bad24d03-61cb-46c8-97af-5e5b7816c683" + "f0b0807e-2928-4083-a6ff-cf1e1150a364" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040151Z:bad24d03-61cb-46c8-97af-5e5b7816c683" + "WESTEUROPE:20150827T111125Z:f0b0807e-2928-4083-a6ff-cf1e1150a364" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -976,7 +1024,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:50 GMT" + "Thu, 27 Aug 2015 11:11:24 GMT" ] }, "StatusCode": 200 @@ -991,7 +1039,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:01:44.4960513Z\",\r\n \"duration\": \"PT5.4079851S\",\r\n \"trackingId\": \"8544712a-f70a-4ef4-b956-09de836b1063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:21.8702371Z\",\r\n \"duration\": \"PT6.6531297S\",\r\n \"trackingId\": \"d037dd87-704f-4639-906c-d098c270065b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2100" @@ -1006,16 +1054,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14526" ], "x-ms-request-id": [ - "08d1a43d-1695-4d25-b73f-d2c288c4e5f1" + "ace03974-12ec-4522-97be-f8d7bffe0d79" ], "x-ms-correlation-request-id": [ - "08d1a43d-1695-4d25-b73f-d2c288c4e5f1" + "ace03974-12ec-4522-97be-f8d7bffe0d79" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040155Z:08d1a43d-1695-4d25-b73f-d2c288c4e5f1" + "WESTEUROPE:20150827T111129Z:ace03974-12ec-4522-97be-f8d7bffe0d79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1024,7 +1072,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:54 GMT" + "Thu, 27 Aug 2015 11:11:28 GMT" ] }, "StatusCode": 200 @@ -1039,7 +1087,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:01:44.4960513Z\",\r\n \"duration\": \"PT5.4079851S\",\r\n \"trackingId\": \"8544712a-f70a-4ef4-b956-09de836b1063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:21.8702371Z\",\r\n \"duration\": \"PT6.6531297S\",\r\n \"trackingId\": \"d037dd87-704f-4639-906c-d098c270065b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2100" @@ -1054,16 +1102,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14524" ], "x-ms-request-id": [ - "28ab5e3e-3aa2-4b84-bd16-303c0314b5b4" + "1f9b4bbb-4efc-4fee-a332-d563ac772910" ], "x-ms-correlation-request-id": [ - "28ab5e3e-3aa2-4b84-bd16-303c0314b5b4" + "1f9b4bbb-4efc-4fee-a332-d563ac772910" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040158Z:28ab5e3e-3aa2-4b84-bd16-303c0314b5b4" + "WESTEUROPE:20150827T111133Z:1f9b4bbb-4efc-4fee-a332-d563ac772910" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1072,7 +1120,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:58 GMT" + "Thu, 27 Aug 2015 11:11:32 GMT" ] }, "StatusCode": 200 @@ -1087,7 +1135,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:01:44.4960513Z\",\r\n \"duration\": \"PT5.4079851S\",\r\n \"trackingId\": \"8544712a-f70a-4ef4-b956-09de836b1063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:21.8702371Z\",\r\n \"duration\": \"PT6.6531297S\",\r\n \"trackingId\": \"d037dd87-704f-4639-906c-d098c270065b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2100" @@ -1102,16 +1150,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14522" ], "x-ms-request-id": [ - "a711fd8b-b398-4657-8cbe-962e005fa571" + "e9ff9a3c-a874-4c99-9cfa-46ae58fa48f0" ], "x-ms-correlation-request-id": [ - "a711fd8b-b398-4657-8cbe-962e005fa571" + "e9ff9a3c-a874-4c99-9cfa-46ae58fa48f0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040202Z:a711fd8b-b398-4657-8cbe-962e005fa571" + "WESTEUROPE:20150827T111137Z:e9ff9a3c-a874-4c99-9cfa-46ae58fa48f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1120,7 +1168,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:01 GMT" + "Thu, 27 Aug 2015 11:11:36 GMT" ] }, "StatusCode": 200 @@ -1135,7 +1183,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:01:44.4960513Z\",\r\n \"duration\": \"PT5.4079851S\",\r\n \"trackingId\": \"8544712a-f70a-4ef4-b956-09de836b1063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:21.8702371Z\",\r\n \"duration\": \"PT6.6531297S\",\r\n \"trackingId\": \"d037dd87-704f-4639-906c-d098c270065b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2100" @@ -1150,16 +1198,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14520" ], "x-ms-request-id": [ - "ea9719f0-705d-42c8-8545-3e595ba5182b" + "96d325d1-e19f-4152-b29f-d5cbd812d810" ], "x-ms-correlation-request-id": [ - "ea9719f0-705d-42c8-8545-3e595ba5182b" + "96d325d1-e19f-4152-b29f-d5cbd812d810" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040206Z:ea9719f0-705d-42c8-8545-3e595ba5182b" + "WESTEUROPE:20150827T111141Z:96d325d1-e19f-4152-b29f-d5cbd812d810" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1168,7 +1216,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:06 GMT" + "Thu, 27 Aug 2015 11:11:40 GMT" ] }, "StatusCode": 200 @@ -1183,7 +1231,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:01:44.4960513Z\",\r\n \"duration\": \"PT5.4079851S\",\r\n \"trackingId\": \"8544712a-f70a-4ef4-b956-09de836b1063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:21.8702371Z\",\r\n \"duration\": \"PT6.6531297S\",\r\n \"trackingId\": \"d037dd87-704f-4639-906c-d098c270065b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2100" @@ -1198,16 +1246,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14518" ], "x-ms-request-id": [ - "3c2fec57-3e49-4300-b8d0-c2984df9c0f8" + "32ed3f39-27ca-47a1-bf68-ee71add75e3b" ], "x-ms-correlation-request-id": [ - "3c2fec57-3e49-4300-b8d0-c2984df9c0f8" + "32ed3f39-27ca-47a1-bf68-ee71add75e3b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040209Z:3c2fec57-3e49-4300-b8d0-c2984df9c0f8" + "WESTEUROPE:20150827T111145Z:32ed3f39-27ca-47a1-bf68-ee71add75e3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1216,7 +1264,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:09 GMT" + "Thu, 27 Aug 2015 11:11:44 GMT" ] }, "StatusCode": 200 @@ -1231,7 +1279,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:01:44.4960513Z\",\r\n \"duration\": \"PT5.4079851S\",\r\n \"trackingId\": \"8544712a-f70a-4ef4-b956-09de836b1063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:21.8702371Z\",\r\n \"duration\": \"PT6.6531297S\",\r\n \"trackingId\": \"d037dd87-704f-4639-906c-d098c270065b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2100" @@ -1246,16 +1294,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14516" ], "x-ms-request-id": [ - "9540a05b-fd12-4be1-889e-aa0099fe8fe7" + "97973827-c40f-4327-9904-4487e7537e66" ], "x-ms-correlation-request-id": [ - "9540a05b-fd12-4be1-889e-aa0099fe8fe7" + "97973827-c40f-4327-9904-4487e7537e66" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040213Z:9540a05b-fd12-4be1-889e-aa0099fe8fe7" + "WESTEUROPE:20150827T111149Z:97973827-c40f-4327-9904-4487e7537e66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1264,7 +1312,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:13 GMT" + "Thu, 27 Aug 2015 11:11:48 GMT" ] }, "StatusCode": 200 @@ -1279,7 +1327,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:01:44.4960513Z\",\r\n \"duration\": \"PT5.4079851S\",\r\n \"trackingId\": \"8544712a-f70a-4ef4-b956-09de836b1063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:21.8702371Z\",\r\n \"duration\": \"PT6.6531297S\",\r\n \"trackingId\": \"d037dd87-704f-4639-906c-d098c270065b\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2100" @@ -1294,16 +1342,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14514" ], "x-ms-request-id": [ - "416eb147-eb4f-4c1d-9292-c188b42ae5c4" + "b1308fd9-6c10-45e0-ac99-a14912d08b76" ], "x-ms-correlation-request-id": [ - "416eb147-eb4f-4c1d-9292-c188b42ae5c4" + "b1308fd9-6c10-45e0-ac99-a14912d08b76" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040217Z:416eb147-eb4f-4c1d-9292-c188b42ae5c4" + "WESTEUROPE:20150827T111153Z:b1308fd9-6c10-45e0-ac99-a14912d08b76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1312,7 +1360,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:17 GMT" + "Thu, 27 Aug 2015 11:11:52 GMT" ] }, "StatusCode": 200 @@ -1327,7 +1375,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:02:17.4384668Z\",\r\n \"duration\": \"PT38.3504006S\",\r\n \"trackingId\": \"709381df-c367-4939-9ae2-40143cfc24ac\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:54.6932066Z\",\r\n \"duration\": \"PT39.4760992S\",\r\n \"trackingId\": \"afbe39c4-085f-447d-8604-14be7ffec8b6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2101" @@ -1342,16 +1390,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14512" ], "x-ms-request-id": [ - "b3627812-d056-4b67-80f6-ff75c7ff1c94" + "d3c1a16f-c723-43e7-b3f6-0667ac160f7f" ], "x-ms-correlation-request-id": [ - "b3627812-d056-4b67-80f6-ff75c7ff1c94" + "d3c1a16f-c723-43e7-b3f6-0667ac160f7f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040220Z:b3627812-d056-4b67-80f6-ff75c7ff1c94" + "WESTEUROPE:20150827T111157Z:d3c1a16f-c723-43e7-b3f6-0667ac160f7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1360,7 +1408,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:20 GMT" + "Thu, 27 Aug 2015 11:11:57 GMT" ] }, "StatusCode": 200 @@ -1375,7 +1423,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:02:17.4384668Z\",\r\n \"duration\": \"PT38.3504006S\",\r\n \"trackingId\": \"709381df-c367-4939-9ae2-40143cfc24ac\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:54.6932066Z\",\r\n \"duration\": \"PT39.4760992S\",\r\n \"trackingId\": \"afbe39c4-085f-447d-8604-14be7ffec8b6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2101" @@ -1390,16 +1438,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14510" ], "x-ms-request-id": [ - "91b56733-6443-460a-8d55-bf3d2a7f3789" + "cbeaf953-cccf-4464-b265-e3aa1c3221d6" ], "x-ms-correlation-request-id": [ - "91b56733-6443-460a-8d55-bf3d2a7f3789" + "cbeaf953-cccf-4464-b265-e3aa1c3221d6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040224Z:91b56733-6443-460a-8d55-bf3d2a7f3789" + "WESTEUROPE:20150827T111201Z:cbeaf953-cccf-4464-b265-e3aa1c3221d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1408,7 +1456,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:24 GMT" + "Thu, 27 Aug 2015 11:12:01 GMT" ] }, "StatusCode": 200 @@ -1423,7 +1471,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:02:17.4384668Z\",\r\n \"duration\": \"PT38.3504006S\",\r\n \"trackingId\": \"709381df-c367-4939-9ae2-40143cfc24ac\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:54.6932066Z\",\r\n \"duration\": \"PT39.4760992S\",\r\n \"trackingId\": \"afbe39c4-085f-447d-8604-14be7ffec8b6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2101" @@ -1438,16 +1486,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14508" ], "x-ms-request-id": [ - "0d29caaf-b060-48d4-8437-78859cf5cdf3" + "2e8665e4-0484-477c-9e84-ba3fd4c8d1c4" ], "x-ms-correlation-request-id": [ - "0d29caaf-b060-48d4-8437-78859cf5cdf3" + "2e8665e4-0484-477c-9e84-ba3fd4c8d1c4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040228Z:0d29caaf-b060-48d4-8437-78859cf5cdf3" + "WESTEUROPE:20150827T111206Z:2e8665e4-0484-477c-9e84-ba3fd4c8d1c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1456,7 +1504,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:27 GMT" + "Thu, 27 Aug 2015 11:12:05 GMT" ] }, "StatusCode": 200 @@ -1471,7 +1519,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:02:17.4384668Z\",\r\n \"duration\": \"PT38.3504006S\",\r\n \"trackingId\": \"709381df-c367-4939-9ae2-40143cfc24ac\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:54.6932066Z\",\r\n \"duration\": \"PT39.4760992S\",\r\n \"trackingId\": \"afbe39c4-085f-447d-8604-14be7ffec8b6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2101" @@ -1486,16 +1534,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14506" ], "x-ms-request-id": [ - "3770acdb-caf3-4b07-9322-8109b0b05828" + "7ee18e16-f03c-4b09-adcd-37a446949d66" ], "x-ms-correlation-request-id": [ - "3770acdb-caf3-4b07-9322-8109b0b05828" + "7ee18e16-f03c-4b09-adcd-37a446949d66" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040232Z:3770acdb-caf3-4b07-9322-8109b0b05828" + "WESTEUROPE:20150827T111210Z:7ee18e16-f03c-4b09-adcd-37a446949d66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1504,7 +1552,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:31 GMT" + "Thu, 27 Aug 2015 11:12:09 GMT" ] }, "StatusCode": 200 @@ -1519,7 +1567,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:02:17.4384668Z\",\r\n \"duration\": \"PT38.3504006S\",\r\n \"trackingId\": \"709381df-c367-4939-9ae2-40143cfc24ac\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:54.6932066Z\",\r\n \"duration\": \"PT39.4760992S\",\r\n \"trackingId\": \"afbe39c4-085f-447d-8604-14be7ffec8b6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2101" @@ -1534,16 +1582,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14504" ], "x-ms-request-id": [ - "5c04f01e-a406-4b79-a8ba-59cd506d3be7" + "18331973-6a0d-4850-9f27-545cdfaf9bda" ], "x-ms-correlation-request-id": [ - "5c04f01e-a406-4b79-a8ba-59cd506d3be7" + "18331973-6a0d-4850-9f27-545cdfaf9bda" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040235Z:5c04f01e-a406-4b79-a8ba-59cd506d3be7" + "WESTEUROPE:20150827T111214Z:18331973-6a0d-4850-9f27-545cdfaf9bda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1552,7 +1600,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:35 GMT" + "Thu, 27 Aug 2015 11:12:13 GMT" ] }, "StatusCode": 200 @@ -1567,7 +1615,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:02:17.4384668Z\",\r\n \"duration\": \"PT38.3504006S\",\r\n \"trackingId\": \"709381df-c367-4939-9ae2-40143cfc24ac\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:54.6932066Z\",\r\n \"duration\": \"PT39.4760992S\",\r\n \"trackingId\": \"afbe39c4-085f-447d-8604-14be7ffec8b6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2101" @@ -1582,16 +1630,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14501" ], "x-ms-request-id": [ - "5bc20fff-db84-4cad-80c8-790aa091bcc2" + "cefa3165-85fa-4479-97fa-e5e7fea17488" ], "x-ms-correlation-request-id": [ - "5bc20fff-db84-4cad-80c8-790aa091bcc2" + "cefa3165-85fa-4479-97fa-e5e7fea17488" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040239Z:5bc20fff-db84-4cad-80c8-790aa091bcc2" + "WESTEUROPE:20150827T111218Z:cefa3165-85fa-4479-97fa-e5e7fea17488" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1600,7 +1648,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:38 GMT" + "Thu, 27 Aug 2015 11:12:18 GMT" ] }, "StatusCode": 200 @@ -1615,7 +1663,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:02:17.4384668Z\",\r\n \"duration\": \"PT38.3504006S\",\r\n \"trackingId\": \"709381df-c367-4939-9ae2-40143cfc24ac\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:54.6932066Z\",\r\n \"duration\": \"PT39.4760992S\",\r\n \"trackingId\": \"afbe39c4-085f-447d-8604-14be7ffec8b6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2101" @@ -1630,16 +1678,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14499" ], "x-ms-request-id": [ - "39429450-ec76-454e-b35d-9ec23fd8fdd1" + "81008f93-6f39-41bb-bf7d-ddb3a2d61a9c" ], "x-ms-correlation-request-id": [ - "39429450-ec76-454e-b35d-9ec23fd8fdd1" + "81008f93-6f39-41bb-bf7d-ddb3a2d61a9c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040243Z:39429450-ec76-454e-b35d-9ec23fd8fdd1" + "WESTEUROPE:20150827T111222Z:81008f93-6f39-41bb-bf7d-ddb3a2d61a9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1648,7 +1696,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:42 GMT" + "Thu, 27 Aug 2015 11:12:22 GMT" ] }, "StatusCode": 200 @@ -1663,7 +1711,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:02:17.4384668Z\",\r\n \"duration\": \"PT38.3504006S\",\r\n \"trackingId\": \"709381df-c367-4939-9ae2-40143cfc24ac\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:11:54.6932066Z\",\r\n \"duration\": \"PT39.4760992S\",\r\n \"trackingId\": \"afbe39c4-085f-447d-8604-14be7ffec8b6\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2101" @@ -1678,16 +1726,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14497" ], "x-ms-request-id": [ - "d5269500-84cd-4aa5-b995-7e2a336c9d8d" + "4bba5fc8-b113-4208-bfeb-fb49a14fc659" ], "x-ms-correlation-request-id": [ - "d5269500-84cd-4aa5-b995-7e2a336c9d8d" + "4bba5fc8-b113-4208-bfeb-fb49a14fc659" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040246Z:d5269500-84cd-4aa5-b995-7e2a336c9d8d" + "WESTEUROPE:20150827T111226Z:4bba5fc8-b113-4208-bfeb-fb49a14fc659" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1696,7 +1744,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:46 GMT" + "Thu, 27 Aug 2015 11:12:26 GMT" ] }, "StatusCode": 200 @@ -1711,10 +1759,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:02:48.7190925Z\",\r\n \"duration\": \"PT1M9.6310263S\",\r\n \"trackingId\": \"871bf2aa-b779-4f4e-82f2-6e7ff12a15d5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:12:27.2167547Z\",\r\n \"duration\": \"PT1M11.9996473S\",\r\n \"trackingId\": \"9db036a6-e14f-4885-a4d0-16ffa1c0f965\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2101" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1726,16 +1774,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14494" ], "x-ms-request-id": [ - "d8983d9a-e16b-4708-ad7c-434f64f58793" + "eb1e318a-22a8-4cc9-aad1-a27b28501c72" ], "x-ms-correlation-request-id": [ - "d8983d9a-e16b-4708-ad7c-434f64f58793" + "eb1e318a-22a8-4cc9-aad1-a27b28501c72" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040250Z:d8983d9a-e16b-4708-ad7c-434f64f58793" + "WESTEUROPE:20150827T111230Z:eb1e318a-22a8-4cc9-aad1-a27b28501c72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1744,7 +1792,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:49 GMT" + "Thu, 27 Aug 2015 11:12:30 GMT" ] }, "StatusCode": 200 @@ -1759,10 +1807,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:02:48.7190925Z\",\r\n \"duration\": \"PT1M9.6310263S\",\r\n \"trackingId\": \"871bf2aa-b779-4f4e-82f2-6e7ff12a15d5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:12:27.2167547Z\",\r\n \"duration\": \"PT1M11.9996473S\",\r\n \"trackingId\": \"9db036a6-e14f-4885-a4d0-16ffa1c0f965\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2101" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1774,16 +1822,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14492" ], "x-ms-request-id": [ - "99bee367-ac23-48f1-acc9-9339e1c8f855" + "6e610c13-4c5b-45d3-9de7-f61e9bcbdccd" ], "x-ms-correlation-request-id": [ - "99bee367-ac23-48f1-acc9-9339e1c8f855" + "6e610c13-4c5b-45d3-9de7-f61e9bcbdccd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040254Z:99bee367-ac23-48f1-acc9-9339e1c8f855" + "WESTEUROPE:20150827T111234Z:6e610c13-4c5b-45d3-9de7-f61e9bcbdccd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1792,7 +1840,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:53 GMT" + "Thu, 27 Aug 2015 11:12:34 GMT" ] }, "StatusCode": 200 @@ -1807,7 +1855,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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:02:54.1160957Z\",\r\n \"duration\": \"PT1M15.0280295S\",\r\n \"trackingId\": \"13ae8912-4d05-4047-92de-2070d2afa215\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:42.0167502Z\",\r\n \"duration\": \"PT2.8055709S\",\r\n \"trackingId\": \"2e41b550-c382-4903-9431-8eb3f642f6f9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:01:38.9247988Z\",\r\n \"duration\": \"PT41.035185S\",\r\n \"trackingId\": \"e0667262-6371-4d66-8ea8-1770f361a24c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\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-rg70222/deployments/sql-ddm-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:12:34.6285187Z\",\r\n \"duration\": \"PT1M19.4114113S\",\r\n \"trackingId\": \"307e1302-0402-4163-9a5f-116784dc3c60\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/95D47AB9DB87B4E3\",\r\n \"operationId\": \"95D47AB9DB87B4E3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:21.3009745Z\",\r\n \"duration\": \"PT6.0513248S\",\r\n \"trackingId\": \"3f018fd2-3900-4804-b1ab-774e26e46706\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:11:15.128733Z\",\r\n \"duration\": \"PT53.8312402S\",\r\n \"trackingId\": \"f31e7201-cd04-41d2-922c-f89ab6b1ad84\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2104" @@ -1822,16 +1870,64 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14490" + ], + "x-ms-request-id": [ + "f6c7b0fd-f3d0-4b85-bb53-e2d00b82a68b" + ], + "x-ms-correlation-request-id": [ + "f6c7b0fd-f3d0-4b85-bb53-e2d00b82a68b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T111238Z:f6c7b0fd-f3d0-4b85-bb53-e2d00b82a68b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 11:12:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/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": [ + "14564" ], "x-ms-request-id": [ - "037ca853-c1e1-455d-b8a9-91656745e5f8" + "7e6342c8-9c1f-45f0-8131-11ea315fa122" ], "x-ms-correlation-request-id": [ - "037ca853-c1e1-455d-b8a9-91656745e5f8" + "7e6342c8-9c1f-45f0-8131-11ea315fa122" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040257Z:037ca853-c1e1-455d-b8a9-91656745e5f8" + "WESTEUROPE:20150827T111022Z:7e6342c8-9c1f-45f0-8131-11ea315fa122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1840,7 +1936,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:56 GMT" + "Thu, 27 Aug 2015 11:10:22 GMT" ] }, "StatusCode": 200 @@ -1855,7 +1951,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -1870,16 +1966,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14562" ], "x-ms-request-id": [ - "b49025ea-6bb5-4e3c-9598-7c54e5a6420f" + "e74ee2f9-75b9-4ce8-9865-daf73acc51f1" ], "x-ms-correlation-request-id": [ - "b49025ea-6bb5-4e3c-9598-7c54e5a6420f" + "e74ee2f9-75b9-4ce8-9865-daf73acc51f1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040059Z:b49025ea-6bb5-4e3c-9598-7c54e5a6420f" + "WESTEUROPE:20150827T111026Z:e74ee2f9-75b9-4ce8-9865-daf73acc51f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1888,7 +1984,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:00:59 GMT" + "Thu, 27 Aug 2015 11:10:26 GMT" ] }, "StatusCode": 200 @@ -1903,7 +1999,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -1918,16 +2014,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14559" ], "x-ms-request-id": [ - "1792d7f2-7634-45ee-b18c-67b0fdad7275" + "b41bb2ad-42e2-4134-9db8-fa0b57fad357" ], "x-ms-correlation-request-id": [ - "1792d7f2-7634-45ee-b18c-67b0fdad7275" + "b41bb2ad-42e2-4134-9db8-fa0b57fad357" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040103Z:1792d7f2-7634-45ee-b18c-67b0fdad7275" + "WESTEUROPE:20150827T111030Z:b41bb2ad-42e2-4134-9db8-fa0b57fad357" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1936,7 +2032,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:02 GMT" + "Thu, 27 Aug 2015 11:10:30 GMT" ] }, "StatusCode": 200 @@ -1951,7 +2047,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -1966,16 +2062,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14557" ], "x-ms-request-id": [ - "97ead89b-34c3-4bb5-bcb6-e4ae871e808a" + "0f55d8bc-5416-4283-9790-c301af8b4962" ], "x-ms-correlation-request-id": [ - "97ead89b-34c3-4bb5-bcb6-e4ae871e808a" + "0f55d8bc-5416-4283-9790-c301af8b4962" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040106Z:97ead89b-34c3-4bb5-bcb6-e4ae871e808a" + "WESTEUROPE:20150827T111034Z:0f55d8bc-5416-4283-9790-c301af8b4962" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1984,7 +2080,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:05 GMT" + "Thu, 27 Aug 2015 11:10:34 GMT" ] }, "StatusCode": 200 @@ -1999,7 +2095,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2014,16 +2110,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14555" ], "x-ms-request-id": [ - "69330510-75b8-439a-8182-dc351fd8a5ee" + "569a3125-c3fe-43fe-ac3f-45a82c377dc9" ], "x-ms-correlation-request-id": [ - "69330510-75b8-439a-8182-dc351fd8a5ee" + "569a3125-c3fe-43fe-ac3f-45a82c377dc9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040110Z:69330510-75b8-439a-8182-dc351fd8a5ee" + "WESTEUROPE:20150827T111038Z:569a3125-c3fe-43fe-ac3f-45a82c377dc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2032,7 +2128,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:09 GMT" + "Thu, 27 Aug 2015 11:10:37 GMT" ] }, "StatusCode": 200 @@ -2047,7 +2143,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2062,16 +2158,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14553" ], "x-ms-request-id": [ - "86d7b453-5b45-43b6-a0a5-3d54c194a070" + "47b18b45-9367-4430-80e1-56806480ac4a" ], "x-ms-correlation-request-id": [ - "86d7b453-5b45-43b6-a0a5-3d54c194a070" + "47b18b45-9367-4430-80e1-56806480ac4a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040113Z:86d7b453-5b45-43b6-a0a5-3d54c194a070" + "WESTEUROPE:20150827T111042Z:47b18b45-9367-4430-80e1-56806480ac4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2080,7 +2176,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:12 GMT" + "Thu, 27 Aug 2015 11:10:41 GMT" ] }, "StatusCode": 200 @@ -2095,7 +2191,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2110,16 +2206,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14551" ], "x-ms-request-id": [ - "6fe69d96-81c3-4654-927a-7cf81b26d4fa" + "545f3e37-0411-4f94-b8d2-e27ae26a38f2" ], "x-ms-correlation-request-id": [ - "6fe69d96-81c3-4654-927a-7cf81b26d4fa" + "545f3e37-0411-4f94-b8d2-e27ae26a38f2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040116Z:6fe69d96-81c3-4654-927a-7cf81b26d4fa" + "WESTEUROPE:20150827T111046Z:545f3e37-0411-4f94-b8d2-e27ae26a38f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2128,7 +2224,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:15 GMT" + "Thu, 27 Aug 2015 11:10:45 GMT" ] }, "StatusCode": 200 @@ -2143,7 +2239,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2158,16 +2254,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14548" ], "x-ms-request-id": [ - "0ada3321-0592-4b4d-bbe4-e4680add61ff" + "15d563c5-964b-4db7-8034-508eb04eeacc" ], "x-ms-correlation-request-id": [ - "0ada3321-0592-4b4d-bbe4-e4680add61ff" + "15d563c5-964b-4db7-8034-508eb04eeacc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040120Z:0ada3321-0592-4b4d-bbe4-e4680add61ff" + "WESTEUROPE:20150827T111050Z:15d563c5-964b-4db7-8034-508eb04eeacc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2176,7 +2272,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:20 GMT" + "Thu, 27 Aug 2015 11:10:49 GMT" ] }, "StatusCode": 200 @@ -2191,7 +2287,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2206,16 +2302,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14546" ], "x-ms-request-id": [ - "9831a071-646e-49ab-a6bc-29306b424f84" + "93c27ed4-4b08-4a7b-ae81-e590eba36e5e" ], "x-ms-correlation-request-id": [ - "9831a071-646e-49ab-a6bc-29306b424f84" + "93c27ed4-4b08-4a7b-ae81-e590eba36e5e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040123Z:9831a071-646e-49ab-a6bc-29306b424f84" + "WESTEUROPE:20150827T111053Z:93c27ed4-4b08-4a7b-ae81-e590eba36e5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2224,7 +2320,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:23 GMT" + "Thu, 27 Aug 2015 11:10:53 GMT" ] }, "StatusCode": 200 @@ -2239,7 +2335,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2254,16 +2350,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14544" ], "x-ms-request-id": [ - "7cc8e2c7-d526-4bd0-b5cf-7d0280b92fa7" + "848f4c7c-55dd-4fd3-bf45-20566a247da4" ], "x-ms-correlation-request-id": [ - "7cc8e2c7-d526-4bd0-b5cf-7d0280b92fa7" + "848f4c7c-55dd-4fd3-bf45-20566a247da4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040127Z:7cc8e2c7-d526-4bd0-b5cf-7d0280b92fa7" + "WESTEUROPE:20150827T111057Z:848f4c7c-55dd-4fd3-bf45-20566a247da4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2272,7 +2368,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:26 GMT" + "Thu, 27 Aug 2015 11:10:57 GMT" ] }, "StatusCode": 200 @@ -2287,7 +2383,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2302,16 +2398,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14542" ], "x-ms-request-id": [ - "d0294b02-6736-431a-8791-20426f3aea02" + "d6822c43-47dd-4428-8a7f-7037d62d614b" ], "x-ms-correlation-request-id": [ - "d0294b02-6736-431a-8791-20426f3aea02" + "d6822c43-47dd-4428-8a7f-7037d62d614b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040130Z:d0294b02-6736-431a-8791-20426f3aea02" + "WESTEUROPE:20150827T111101Z:d6822c43-47dd-4428-8a7f-7037d62d614b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2320,7 +2416,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:30 GMT" + "Thu, 27 Aug 2015 11:11:01 GMT" ] }, "StatusCode": 200 @@ -2335,7 +2431,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2350,16 +2446,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14540" ], "x-ms-request-id": [ - "c54d405b-1939-443d-99c7-174839e30114" + "7d5101e4-84ee-4bb4-b54b-07d5c46b1962" ], "x-ms-correlation-request-id": [ - "c54d405b-1939-443d-99c7-174839e30114" + "7d5101e4-84ee-4bb4-b54b-07d5c46b1962" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040134Z:c54d405b-1939-443d-99c7-174839e30114" + "WESTEUROPE:20150827T111106Z:7d5101e4-84ee-4bb4-b54b-07d5c46b1962" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2368,7 +2464,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:33 GMT" + "Thu, 27 Aug 2015 11:11:06 GMT" ] }, "StatusCode": 200 @@ -2383,7 +2479,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2398,16 +2494,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14538" ], "x-ms-request-id": [ - "85f89cd8-c30f-49aa-be9f-1d356feb5a81" + "5404fd9c-8876-464c-ae1d-623ea0796ca8" ], "x-ms-correlation-request-id": [ - "85f89cd8-c30f-49aa-be9f-1d356feb5a81" + "5404fd9c-8876-464c-ae1d-623ea0796ca8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040137Z:85f89cd8-c30f-49aa-be9f-1d356feb5a81" + "WESTEUROPE:20150827T111110Z:5404fd9c-8876-464c-ae1d-623ea0796ca8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2416,7 +2512,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:37 GMT" + "Thu, 27 Aug 2015 11:11:10 GMT" ] }, "StatusCode": 200 @@ -2431,7 +2527,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2446,16 +2542,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14536" ], "x-ms-request-id": [ - "350ca130-cb0e-43b3-a637-d83ecce5b96e" + "e1d0285e-bfaf-4d3d-9016-b5fc986fedba" ], "x-ms-correlation-request-id": [ - "350ca130-cb0e-43b3-a637-d83ecce5b96e" + "e1d0285e-bfaf-4d3d-9016-b5fc986fedba" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040141Z:350ca130-cb0e-43b3-a637-d83ecce5b96e" + "WESTEUROPE:20150827T111114Z:e1d0285e-bfaf-4d3d-9016-b5fc986fedba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2464,7 +2560,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:40 GMT" + "Thu, 27 Aug 2015 11:11:13 GMT" ] }, "StatusCode": 200 @@ -2479,7 +2575,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2494,16 +2590,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14534" ], "x-ms-request-id": [ - "4ab0fadd-929a-4039-9c9f-9e5661cb21b9" + "6a45ff29-4dac-4997-9e48-393b0cb11c6f" ], "x-ms-correlation-request-id": [ - "4ab0fadd-929a-4039-9c9f-9e5661cb21b9" + "6a45ff29-4dac-4997-9e48-393b0cb11c6f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040144Z:4ab0fadd-929a-4039-9c9f-9e5661cb21b9" + "WESTEUROPE:20150827T111117Z:6a45ff29-4dac-4997-9e48-393b0cb11c6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2512,7 +2608,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:44 GMT" + "Thu, 27 Aug 2015 11:11:17 GMT" ] }, "StatusCode": 200 @@ -2527,7 +2623,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2542,16 +2638,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14532" ], "x-ms-request-id": [ - "19650476-cc5b-4d18-b4d9-164e64a961f8" + "c14a04fd-4ee3-46e3-ad22-fb635cfbcc38" ], "x-ms-correlation-request-id": [ - "19650476-cc5b-4d18-b4d9-164e64a961f8" + "c14a04fd-4ee3-46e3-ad22-fb635cfbcc38" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040148Z:19650476-cc5b-4d18-b4d9-164e64a961f8" + "WESTEUROPE:20150827T111121Z:c14a04fd-4ee3-46e3-ad22-fb635cfbcc38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2560,7 +2656,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:47 GMT" + "Thu, 27 Aug 2015 11:11:21 GMT" ] }, "StatusCode": 200 @@ -2575,7 +2671,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2590,16 +2686,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14527" ], "x-ms-request-id": [ - "09bb31f8-eaa6-4b1b-8eac-25748f95546a" + "c6d7601a-cbcd-48d5-8248-43374c741206" ], "x-ms-correlation-request-id": [ - "09bb31f8-eaa6-4b1b-8eac-25748f95546a" + "c6d7601a-cbcd-48d5-8248-43374c741206" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040152Z:09bb31f8-eaa6-4b1b-8eac-25748f95546a" + "WESTEUROPE:20150827T111125Z:c6d7601a-cbcd-48d5-8248-43374c741206" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2608,7 +2704,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:51 GMT" + "Thu, 27 Aug 2015 11:11:25 GMT" ] }, "StatusCode": 200 @@ -2623,7 +2719,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2638,16 +2734,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14525" ], "x-ms-request-id": [ - "d26b0283-157b-48db-a9ad-926af1218787" + "0e1f2d54-3564-4fbc-b59e-6260dc6f08a2" ], "x-ms-correlation-request-id": [ - "d26b0283-157b-48db-a9ad-926af1218787" + "0e1f2d54-3564-4fbc-b59e-6260dc6f08a2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040155Z:d26b0283-157b-48db-a9ad-926af1218787" + "WESTEUROPE:20150827T111129Z:0e1f2d54-3564-4fbc-b59e-6260dc6f08a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2656,7 +2752,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:55 GMT" + "Thu, 27 Aug 2015 11:11:29 GMT" ] }, "StatusCode": 200 @@ -2671,7 +2767,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2686,16 +2782,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14523" ], "x-ms-request-id": [ - "f7372f63-28b4-41c8-8a24-9f37d7fccd81" + "cd58c5d2-76f9-4aef-96f4-74926de8549c" ], "x-ms-correlation-request-id": [ - "f7372f63-28b4-41c8-8a24-9f37d7fccd81" + "cd58c5d2-76f9-4aef-96f4-74926de8549c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040159Z:f7372f63-28b4-41c8-8a24-9f37d7fccd81" + "WESTEUROPE:20150827T111133Z:cd58c5d2-76f9-4aef-96f4-74926de8549c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2704,7 +2800,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:01:58 GMT" + "Thu, 27 Aug 2015 11:11:33 GMT" ] }, "StatusCode": 200 @@ -2719,7 +2815,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2734,16 +2830,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14521" ], "x-ms-request-id": [ - "d44d9f02-8c56-47a4-a865-864388903e4c" + "b4348155-2eea-442f-a7a3-52fc92db06cc" ], "x-ms-correlation-request-id": [ - "d44d9f02-8c56-47a4-a865-864388903e4c" + "b4348155-2eea-442f-a7a3-52fc92db06cc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040203Z:d44d9f02-8c56-47a4-a865-864388903e4c" + "WESTEUROPE:20150827T111138Z:b4348155-2eea-442f-a7a3-52fc92db06cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2752,7 +2848,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:02 GMT" + "Thu, 27 Aug 2015 11:11:37 GMT" ] }, "StatusCode": 200 @@ -2767,7 +2863,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2782,16 +2878,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14519" ], "x-ms-request-id": [ - "c81aa4d1-258e-4128-aa19-632574ea43cc" + "88244ac6-86db-47e3-af6d-cb94f9f09a65" ], "x-ms-correlation-request-id": [ - "c81aa4d1-258e-4128-aa19-632574ea43cc" + "88244ac6-86db-47e3-af6d-cb94f9f09a65" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040206Z:c81aa4d1-258e-4128-aa19-632574ea43cc" + "WESTEUROPE:20150827T111142Z:88244ac6-86db-47e3-af6d-cb94f9f09a65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,7 +2896,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:06 GMT" + "Thu, 27 Aug 2015 11:11:41 GMT" ] }, "StatusCode": 200 @@ -2815,7 +2911,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2830,16 +2926,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14517" ], "x-ms-request-id": [ - "281c2979-9178-46ed-a385-be042c166d25" + "984784bf-fee8-44a4-96cb-36aa8e9b6dc2" ], "x-ms-correlation-request-id": [ - "281c2979-9178-46ed-a385-be042c166d25" + "984784bf-fee8-44a4-96cb-36aa8e9b6dc2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040210Z:281c2979-9178-46ed-a385-be042c166d25" + "WESTEUROPE:20150827T111146Z:984784bf-fee8-44a4-96cb-36aa8e9b6dc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2848,7 +2944,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:10 GMT" + "Thu, 27 Aug 2015 11:11:45 GMT" ] }, "StatusCode": 200 @@ -2863,7 +2959,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2878,16 +2974,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14515" ], "x-ms-request-id": [ - "8fa5f031-7996-42ef-8aed-afc1190f2d1a" + "3ad450ae-a664-467b-b092-955e9dd784f5" ], "x-ms-correlation-request-id": [ - "8fa5f031-7996-42ef-8aed-afc1190f2d1a" + "3ad450ae-a664-467b-b092-955e9dd784f5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040214Z:8fa5f031-7996-42ef-8aed-afc1190f2d1a" + "WESTEUROPE:20150827T111150Z:3ad450ae-a664-467b-b092-955e9dd784f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2896,7 +2992,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:13 GMT" + "Thu, 27 Aug 2015 11:11:49 GMT" ] }, "StatusCode": 200 @@ -2911,7 +3007,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2926,16 +3022,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14513" ], "x-ms-request-id": [ - "b311039c-bc3e-4895-b3f3-56aefad390b6" + "ca0dd912-f351-44ca-92ac-8733a266310d" ], "x-ms-correlation-request-id": [ - "b311039c-bc3e-4895-b3f3-56aefad390b6" + "ca0dd912-f351-44ca-92ac-8733a266310d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040217Z:b311039c-bc3e-4895-b3f3-56aefad390b6" + "WESTEUROPE:20150827T111154Z:ca0dd912-f351-44ca-92ac-8733a266310d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2944,7 +3040,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:17 GMT" + "Thu, 27 Aug 2015 11:11:53 GMT" ] }, "StatusCode": 200 @@ -2959,7 +3055,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -2974,16 +3070,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14511" ], "x-ms-request-id": [ - "ac4896bd-57d2-4667-ae8f-3c1634dfd832" + "530e4dae-eadd-4a89-89d7-3c7015beac58" ], "x-ms-correlation-request-id": [ - "ac4896bd-57d2-4667-ae8f-3c1634dfd832" + "530e4dae-eadd-4a89-89d7-3c7015beac58" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040221Z:ac4896bd-57d2-4667-ae8f-3c1634dfd832" + "WESTEUROPE:20150827T111158Z:530e4dae-eadd-4a89-89d7-3c7015beac58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2992,7 +3088,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:21 GMT" + "Thu, 27 Aug 2015 11:11:58 GMT" ] }, "StatusCode": 200 @@ -3007,7 +3103,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3022,16 +3118,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14509" ], "x-ms-request-id": [ - "f837c778-8d9c-4194-8bcc-b3c1cac94b56" + "7d341393-9961-43b9-8716-93d9e31bb8ea" ], "x-ms-correlation-request-id": [ - "f837c778-8d9c-4194-8bcc-b3c1cac94b56" + "7d341393-9961-43b9-8716-93d9e31bb8ea" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040225Z:f837c778-8d9c-4194-8bcc-b3c1cac94b56" + "WESTEUROPE:20150827T111202Z:7d341393-9961-43b9-8716-93d9e31bb8ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3040,7 +3136,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:25 GMT" + "Thu, 27 Aug 2015 11:12:02 GMT" ] }, "StatusCode": 200 @@ -3055,7 +3151,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3070,16 +3166,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14507" ], "x-ms-request-id": [ - "e41a2f86-b3f2-4865-9f02-2f084fa68b67" + "ebe07678-5dfd-43e1-92bf-522840418156" ], "x-ms-correlation-request-id": [ - "e41a2f86-b3f2-4865-9f02-2f084fa68b67" + "ebe07678-5dfd-43e1-92bf-522840418156" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040229Z:e41a2f86-b3f2-4865-9f02-2f084fa68b67" + "WESTEUROPE:20150827T111206Z:ebe07678-5dfd-43e1-92bf-522840418156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3088,7 +3184,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:28 GMT" + "Thu, 27 Aug 2015 11:12:06 GMT" ] }, "StatusCode": 200 @@ -3103,7 +3199,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3118,16 +3214,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14505" ], "x-ms-request-id": [ - "74f147be-020b-454e-a311-722ed823f305" + "83fbab5b-b612-4d71-b919-a8cdb1a19a23" ], "x-ms-correlation-request-id": [ - "74f147be-020b-454e-a311-722ed823f305" + "83fbab5b-b612-4d71-b919-a8cdb1a19a23" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040232Z:74f147be-020b-454e-a311-722ed823f305" + "WESTEUROPE:20150827T111210Z:83fbab5b-b612-4d71-b919-a8cdb1a19a23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3136,7 +3232,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:32 GMT" + "Thu, 27 Aug 2015 11:12:10 GMT" ] }, "StatusCode": 200 @@ -3151,7 +3247,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3166,16 +3262,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14503" ], "x-ms-request-id": [ - "11928c66-86b9-4929-88b7-5c0ff9fab3bb" + "b3894fc5-baea-425e-917a-1b993580555c" ], "x-ms-correlation-request-id": [ - "11928c66-86b9-4929-88b7-5c0ff9fab3bb" + "b3894fc5-baea-425e-917a-1b993580555c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040236Z:11928c66-86b9-4929-88b7-5c0ff9fab3bb" + "WESTEUROPE:20150827T111215Z:b3894fc5-baea-425e-917a-1b993580555c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3184,7 +3280,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:35 GMT" + "Thu, 27 Aug 2015 11:12:14 GMT" ] }, "StatusCode": 200 @@ -3199,7 +3295,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3214,16 +3310,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14500" ], "x-ms-request-id": [ - "8d38d4c4-b3dd-45e6-b9b9-db98bedbf114" + "de42e914-ef52-48ee-970d-3d763e960146" ], "x-ms-correlation-request-id": [ - "8d38d4c4-b3dd-45e6-b9b9-db98bedbf114" + "de42e914-ef52-48ee-970d-3d763e960146" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040240Z:8d38d4c4-b3dd-45e6-b9b9-db98bedbf114" + "WESTEUROPE:20150827T111219Z:de42e914-ef52-48ee-970d-3d763e960146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3232,7 +3328,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:39 GMT" + "Thu, 27 Aug 2015 11:12:18 GMT" ] }, "StatusCode": 200 @@ -3247,7 +3343,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3262,16 +3358,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14498" ], "x-ms-request-id": [ - "e9885a62-5690-4319-9b55-2044cde6d8d0" + "a0cd128e-2ee0-46c9-ac34-a39245844856" ], "x-ms-correlation-request-id": [ - "e9885a62-5690-4319-9b55-2044cde6d8d0" + "a0cd128e-2ee0-46c9-ac34-a39245844856" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040243Z:e9885a62-5690-4319-9b55-2044cde6d8d0" + "WESTEUROPE:20150827T111223Z:a0cd128e-2ee0-46c9-ac34-a39245844856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3280,7 +3376,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:43 GMT" + "Thu, 27 Aug 2015 11:12:22 GMT" ] }, "StatusCode": 200 @@ -3295,7 +3391,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3310,16 +3406,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14496" ], "x-ms-request-id": [ - "799b98a9-1628-4c69-9693-cded01232691" + "17df6233-31d3-49bb-b344-888b774d8236" ], "x-ms-correlation-request-id": [ - "799b98a9-1628-4c69-9693-cded01232691" + "17df6233-31d3-49bb-b344-888b774d8236" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040247Z:799b98a9-1628-4c69-9693-cded01232691" + "WESTEUROPE:20150827T111227Z:17df6233-31d3-49bb-b344-888b774d8236" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3328,7 +3424,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:46 GMT" + "Thu, 27 Aug 2015 11:12:26 GMT" ] }, "StatusCode": 200 @@ -3343,7 +3439,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3358,16 +3454,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14493" ], "x-ms-request-id": [ - "608285a6-b6bc-41a1-98d4-cd8fedcd7dfd" + "b421f1a0-7877-49c0-ab0b-63626b84fb38" ], "x-ms-correlation-request-id": [ - "608285a6-b6bc-41a1-98d4-cd8fedcd7dfd" + "b421f1a0-7877-49c0-ab0b-63626b84fb38" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040251Z:608285a6-b6bc-41a1-98d4-cd8fedcd7dfd" + "WESTEUROPE:20150827T111231Z:b421f1a0-7877-49c0-ab0b-63626b84fb38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3376,7 +3472,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:50 GMT" + "Thu, 27 Aug 2015 11:12:30 GMT" ] }, "StatusCode": 200 @@ -3391,7 +3487,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:00:57.7587654Z\",\r\n \"duration\": \"PT2.2360171S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:10:21.2275917Z\",\r\n \"duration\": \"PT4.7112501S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2302" @@ -3406,16 +3502,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14491" ], "x-ms-request-id": [ - "dfa596c4-9879-4ac8-9158-0b3d40588ad3" + "6045b082-b1d0-4549-98aa-d09b4f26e6e1" ], "x-ms-correlation-request-id": [ - "dfa596c4-9879-4ac8-9158-0b3d40588ad3" + "6045b082-b1d0-4549-98aa-d09b4f26e6e1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040254Z:dfa596c4-9879-4ac8-9158-0b3d40588ad3" + "WESTEUROPE:20150827T111235Z:6045b082-b1d0-4549-98aa-d09b4f26e6e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3424,7 +3520,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:53 GMT" + "Thu, 27 Aug 2015 11:12:34 GMT" ] }, "StatusCode": 200 @@ -3439,10 +3535,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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:02:56.7352344Z\",\r\n \"duration\": \"PT2M1.2124861S\",\r\n \"correlationId\": \"6d963352-6d06-4f02-878e-210d0c89f95d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server70222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server70222/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-rg70222/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:12:35.6819171Z\",\r\n \"duration\": \"PT2M19.1655755S\",\r\n \"correlationId\": \"47b19318-2850-4de1-9b1a-be0a7e320123\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server70222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server70222/firewallrules/AllowAllWindowsAzureIps\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2567" + "2568" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3454,16 +3550,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14489" ], "x-ms-request-id": [ - "e2ceff54-ec3c-4d12-be8a-57572c17033d" + "8fd5c956-c767-4fb4-8585-8c81c74ee40a" ], "x-ms-correlation-request-id": [ - "e2ceff54-ec3c-4d12-be8a-57572c17033d" + "8fd5c956-c767-4fb4-8585-8c81c74ee40a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040258Z:e2ceff54-ec3c-4d12-be8a-57572c17033d" + "WESTEUROPE:20150827T111239Z:8fd5c956-c767-4fb4-8585-8c81c74ee40a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3472,7 +3568,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:57 GMT" + "Thu, 27 Aug 2015 11:12:38 GMT" ] }, "StatusCode": 200 @@ -3502,16 +3598,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14488" ], "x-ms-request-id": [ - "fdfe810b-fbb4-49f4-a645-6237847248d1" + "6972fe28-faad-4096-9308-f24f4ceeb6f1" ], "x-ms-correlation-request-id": [ - "fdfe810b-fbb4-49f4-a645-6237847248d1" + "6972fe28-faad-4096-9308-f24f4ceeb6f1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040300Z:fdfe810b-fbb4-49f4-a645-6237847248d1" + "WESTEUROPE:20150827T111241Z:6972fe28-faad-4096-9308-f24f4ceeb6f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3520,7 +3616,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:02:59 GMT" + "Thu, 27 Aug 2015 11:12:40 GMT" ] }, "StatusCode": 200 @@ -3553,16 +3649,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "brazilus:4671cddf-b03d-4307-9c5f-1d3f99e9fb18" + "westeurope:a5643c25-f3b9-4a16-8b5a-996017aa7e7b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14581" ], "x-ms-correlation-request-id": [ - "0268f412-3e7c-4102-8b49-5ccbe2386c24" + "ad80f3da-8cd2-4ae9-b6e8-f98b5e3bbcd7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040302Z:0268f412-3e7c-4102-8b49-5ccbe2386c24" + "WESTEUROPE:20150827T111243Z:ad80f3da-8cd2-4ae9-b6e8-f98b5e3bbcd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3571,7 +3667,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:03:01 GMT" + "Thu, 27 Aug 2015 11:12:42 GMT" ] }, "StatusCode": 200 @@ -3586,7 +3682,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f21a4dbf-034b-456e-8777-765155ebd179" + "0ee4ca6a-fa20-4ca9-a273-0a8a36ba5cb5" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/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\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", @@ -3598,7 +3694,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c6942470-f2f1-4f6d-b5f8-57a5ec2b4173" + "9453fbb0-5a0b-4864-837b-83082203e3d4" ], "X-Content-Type-Options": [ "nosniff" @@ -3610,19 +3706,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14597" ], "x-ms-correlation-request-id": [ - "12bc3877-f8c3-4dce-8db0-86aed540ac55" + "96f996c0-2eba-4924-b2fa-096b8fabcf25" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040307Z:12bc3877-f8c3-4dce-8db0-86aed540ac55" + "WESTEUROPE:20150827T111250Z:96f996c0-2eba-4924-b2fa-096b8fabcf25" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:03:07 GMT" + "Thu, 27 Aug 2015 11:12:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3640,7 +3736,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a9dbe21b-ae9c-4ba0-afe0-f2a93c871f4e" + "4d56e855-80c1-4b89-8611-69634926a661" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/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\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}", @@ -3652,7 +3748,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ae4a5807-1c15-49d6-ad31-7e8d71838687" + "61cc7a94-45c4-44e2-a771-a0460c27defa" ], "X-Content-Type-Options": [ "nosniff" @@ -3664,19 +3760,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14599" ], "x-ms-correlation-request-id": [ - "e48c42bc-7af7-4ee7-9f1a-f044005e3638" + "1181d466-c23b-4fae-af45-cf019bfc755a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040817Z:e48c42bc-7af7-4ee7-9f1a-f044005e3638" + "WESTEUROPE:20150827T111802Z:1181d466-c23b-4fae-af45-cf019bfc755a" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:08:17 GMT" + "Thu, 27 Aug 2015 11:18:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3700,7 +3796,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "f21a4dbf-034b-456e-8777-765155ebd179" + "0ee4ca6a-fa20-4ca9-a273-0a8a36ba5cb5" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/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\": \"Disabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": null\r\n }\r\n}", @@ -3712,7 +3808,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2053e3a2-a425-475f-b1c3-6e9d297bdb39" + "ce81c29e-f39d-41dd-aae6-b368fb61b2e1" ], "X-Content-Type-Options": [ "nosniff" @@ -3730,16 +3826,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "256d0eeb-3bb9-4d58-96e4-e092f46e2c92" + "8fbb70d6-7ef5-4dea-82c6-bdbcf1d2d2fd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040309Z:256d0eeb-3bb9-4d58-96e4-e092f46e2c92" + "WESTEUROPE:20150827T111252Z:8fbb70d6-7ef5-4dea-82c6-bdbcf1d2d2fd" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:03:09 GMT" + "Thu, 27 Aug 2015 11:12:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3757,7 +3853,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d836675f-de75-4d07-bff0-c869294920ab" + "90347366-7cb2-4adb-a7e9-55048225049d" ] }, "ResponseBody": "{\r\n \"code\": \"40647\",\r\n \"message\": \"Subscription 'cca24ec8-99b5-4aa7-9ff6-486e886f304c' does not have the server 'sql-dm-cmdlet-server70222'.\",\r\n \"target\": null,\r\n \"details\": [\r\n {\r\n \"code\": \"40647\",\r\n \"message\": \"Subscription 'cca24ec8-99b5-4aa7-9ff6-486e886f304c' does not have the server 'sql-dm-cmdlet-server70222'.\",\r\n \"target\": null,\r\n \"severity\": \"16\"\r\n }\r\n ],\r\n \"innererror\": []\r\n}", @@ -3769,7 +3865,7 @@ "application/json" ], "x-ms-request-id": [ - "2f496b9c-dc62-472c-aad7-1b31a44de315" + "d4b15206-764e-431d-89e8-2b80c2abc2fd" ], "X-Content-Type-Options": [ "nosniff" @@ -3781,19 +3877,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14596" ], "x-ms-correlation-request-id": [ - "f0bab610-d147-4bdf-ac8c-cd90c13dc78c" + "1be850f4-d132-4f79-ad14-57a40deb5c49" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040311Z:f0bab610-d147-4bdf-ac8c-cd90c13dc78c" + "WESTEUROPE:20150827T111254Z:1be850f4-d132-4f79-ad14-57a40deb5c49" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:03:11 GMT" + "Thu, 27 Aug 2015 11:12:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3811,7 +3907,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "db0692b2-b3bc-4e45-8b52-cfa4b591e538" + "248fdec2-1d2f-4803-8707-c207eaf3e2f3" ] }, "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Database with name 'NONEXISTING' does not exist. To continue, specify a valid database name.\",\r\n \"target\": null,\r\n \"details\": [],\r\n \"innererror\": []\r\n}", @@ -3823,7 +3919,7 @@ "application/json" ], "x-ms-request-id": [ - "c0ce7a85-b1f2-426c-936f-95da54b929ff" + "71f6f1d2-83bb-434c-a29d-6eb8f15352c9" ], "X-Content-Type-Options": [ "nosniff" @@ -3835,19 +3931,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14602" ], "x-ms-correlation-request-id": [ - "32a18ad5-fb27-4194-bd06-51be87fa8516" + "1c20773d-6dc2-4daa-bde7-47864af4fd5e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040813Z:32a18ad5-fb27-4194-bd06-51be87fa8516" + "WESTEUROPE:20150827T111756Z:1c20773d-6dc2-4daa-bde7-47864af4fd5e" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:08:13 GMT" + "Thu, 27 Aug 2015 11:17:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3865,7 +3961,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "3df14d49-470c-4cf6-a735-783ab3e10bb7" + "8c06e8ec-dc9a-4b88-8c75-35799a52424f" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3877,7 +3973,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e7fa9b19-32fa-4438-bef9-6b74a608a1e2" + "2699af1b-2cb8-421f-9aff-8dc1a6324aea" ], "X-Content-Type-Options": [ "nosniff" @@ -3889,19 +3985,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14601" ], "x-ms-correlation-request-id": [ - "7e82c142-75a3-4adf-84b8-9c7cf6ccdccf" + "9fcb4cc5-44f6-45b3-b74e-53d1fea7db32" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040814Z:7e82c142-75a3-4adf-84b8-9c7cf6ccdccf" + "WESTEUROPE:20150827T111759Z:9fcb4cc5-44f6-45b3-b74e-53d1fea7db32" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:08:14 GMT" + "Thu, 27 Aug 2015 11:17:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3919,7 +4015,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a9dbe21b-ae9c-4ba0-afe0-f2a93c871f4e" + "4d56e855-80c1-4b89-8611-69634926a661" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3931,7 +4027,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "156cdbb8-4d3e-444c-a59d-90db5a87d0dd" + "d8a28264-4bee-48c3-913b-42c88bce3853" ], "X-Content-Type-Options": [ "nosniff" @@ -3943,19 +4039,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14600" ], "x-ms-correlation-request-id": [ - "ad6fdbf6-213f-4d98-9dd9-f6685027343e" + "ac9b632f-9ebf-4db9-8104-f4a2061e9139" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040816Z:ad6fdbf6-213f-4d98-9dd9-f6685027343e" + "WESTEUROPE:20150827T111801Z:ac9b632f-9ebf-4db9-8104-f4a2061e9139" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:08:15 GMT" + "Thu, 27 Aug 2015 11:18:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3973,7 +4069,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "120c9059-1457-4585-9b28-8b900647431d" + "bafbabdd-470b-4fa1-8631-9b346885cb51" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/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\": \"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}", @@ -3985,7 +4081,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2c077b9c-36d3-4800-8c98-5336412ff247" + "d6d9225b-029f-4529-82b5-ac5d31dc66ff" ], "X-Content-Type-Options": [ "nosniff" @@ -3997,19 +4093,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14598" ], "x-ms-correlation-request-id": [ - "d140c881-d001-4b50-974f-64835fef8400" + "fbcd7106-97bf-492b-b77a-ff154a58e59d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040821Z:d140c881-d001-4b50-974f-64835fef8400" + "WESTEUROPE:20150827T111807Z:fbcd7106-97bf-492b-b77a-ff154a58e59d" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:08:21 GMT" + "Thu, 27 Aug 2015 11:18:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4027,7 +4123,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "44886072-429e-4654-a612-711b409b118a" + "f3a2e806-0790-46f3-9e33-f5a80eeda60e" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/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\": \"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}", @@ -4039,7 +4135,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "4c6dde16-015b-45be-a71c-1a3b674f7403" + "7f337894-edad-4573-b788-642c8965c681" ], "X-Content-Type-Options": [ "nosniff" @@ -4051,19 +4147,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14597" ], "x-ms-correlation-request-id": [ - "c22ccf2e-0bc8-4a48-9d5c-3dc8c08e5698" + "c4d738c1-fcfc-4b1c-af24-c44478c67b79" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040822Z:c22ccf2e-0bc8-4a48-9d5c-3dc8c08e5698" + "WESTEUROPE:20150827T111809Z:c4d738c1-fcfc-4b1c-af24-c44478c67b79" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:08:22 GMT" + "Thu, 27 Aug 2015 11:18:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4081,7 +4177,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "abcdea90-0852-4286-9a20-90579a93a455" + "0640d560-af21-45b7-a04b-b2693dbba089" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/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\": \"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}", @@ -4093,7 +4189,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "360fa1c2-fef2-474e-b652-c2cd413b51a4" + "fe6c6319-8223-4fb0-a889-3532edecc2fa" ], "X-Content-Type-Options": [ "nosniff" @@ -4105,19 +4201,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14596" ], "x-ms-correlation-request-id": [ - "b4c748dc-f6ee-40ca-97c4-c9523eaec1c5" + "8ab08d66-d8df-44d2-8313-f18b96923a29" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040824Z:b4c748dc-f6ee-40ca-97c4-c9523eaec1c5" + "WESTEUROPE:20150827T111811Z:8ab08d66-d8df-44d2-8313-f18b96923a29" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:08:23 GMT" + "Thu, 27 Aug 2015 11:18:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4141,7 +4237,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a9dbe21b-ae9c-4ba0-afe0-f2a93c871f4e" + "4d56e855-80c1-4b89-8611-69634926a661" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/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\": 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}", @@ -4153,7 +4249,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e6cd47f9-6ee5-4e11-bcc1-5198e864b94f" + "efcd564e-59b4-4c70-88bc-65704297a6c5" ], "X-Content-Type-Options": [ "nosniff" @@ -4171,16 +4267,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "28c0b955-3fd4-49de-9321-6965e1fe8d12" + "ef8f3237-6f62-4dd5-b319-36461f21e623" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040820Z:28c0b955-3fd4-49de-9321-6965e1fe8d12" + "WESTEUROPE:20150827T111805Z:ef8f3237-6f62-4dd5-b319-36461f21e623" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:08:19 GMT" + "Thu, 27 Aug 2015 11:18:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4198,7 +4294,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "abcdea90-0852-4286-9a20-90579a93a455" + "0640d560-af21-45b7-a04b-b2693dbba089" ] }, "ResponseBody": "", @@ -4210,7 +4306,7 @@ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "ed18947c-76cd-4b2e-a7db-6006b19759fc" + "a4ce0cb3-a8b8-409a-999d-07a0ed0cea1c" ], "X-Content-Type-Options": [ "nosniff" @@ -4225,16 +4321,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "74ede7ab-20a6-447e-b0d7-329c75010280" + "9e223a9b-882c-45f3-9e72-0ff30ef606d5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040825Z:74ede7ab-20a6-447e-b0d7-329c75010280" + "WESTEUROPE:20150827T111813Z:9e223a9b-882c-45f3-9e72-0ff30ef606d5" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:08:25 GMT" + "Thu, 27 Aug 2015 11:18:12 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 4e00565a3852..4bc27ada5720 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 @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -13,7 +13,7 @@ "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "118" + "119" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14911" ], "x-ms-request-id": [ - "72afa46d-d3c4-46db-ab5f-24493a52e87c" + "b483a498-2d21-44a7-a199-dbd60165d52f" ], "x-ms-correlation-request-id": [ - "72afa46d-d3c4-46db-ab5f-24493a52e87c" + "b483a498-2d21-44a7-a199-dbd60165d52f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040932Z:72afa46d-d3c4-46db-ab5f-24493a52e87c" + "WESTEUROPE:20150827T170419Z:b483a498-2d21-44a7-a199-dbd60165d52f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,14 +46,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:31 GMT" + "Thu, 27 Aug 2015 17:04:19 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { @@ -67,10 +67,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-rg45262\",\r\n \"name\": \"sql-dm-cmdlet-test-rg45262\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822\",\r\n \"name\": \"sql-dm-cmdlet-test-rg457822\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "212" + "214" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,13 +85,13 @@ "1199" ], "x-ms-request-id": [ - "5fc8d821-3294-4d99-a58f-0c037f09cdf8" + "496044a6-cdf5-4bf9-9e02-8ba4a93a679b" ], "x-ms-correlation-request-id": [ - "5fc8d821-3294-4d99-a58f-0c037f09cdf8" + "496044a6-cdf5-4bf9-9e02-8ba4a93a679b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040935Z:5fc8d821-3294-4d99-a58f-0c037f09cdf8" + "WESTEUROPE:20150827T170423Z:496044a6-cdf5-4bf9-9e02-8ba4a93a679b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,31 +100,31 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:35 GMT" + "Thu, 27 Aug 2015 17:04:23 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/providers/microsoft.resources/deployments/sql-ddm-test-env-setup/validate?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9taWNyb3NvZnQucmVzb3VyY2VzL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/providers/microsoft.resources/deployments/sql-ddm-test-env-setup/validate?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvbWljcm9zb2Z0LnJlc291cmNlcy9kZXBsb3ltZW50cy9zcWwtZGRtLXRlc3QtZW52LXNldHVwL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "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\": \"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 \"version\": \"12.0\"\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 \"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\": \"AllowAllWindowsAzureIps\",\r\n \"properties\": {\r\n \"endIpAddress\": \"222.222.222.222\",\r\n \"startIpAddress\": \"1.1.1.1\"\r\n },\r\n \"type\": \"firewallrules\"\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-dm-cmdlet-db45262\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"Australia East\"\r\n },\r\n \"administratorLogin\": {\r\n \"value\": \"testuser\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "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 \"version\": \"12.0\"\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 \"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\": \"AllowAllWindowsAzureIps\",\r\n \"properties\": {\r\n \"endIpAddress\": \"222.222.222.222\",\r\n \"startIpAddress\": \"1.1.1.1\"\r\n },\r\n \"type\": \"firewallrules\"\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-dm-cmdlet-db457822\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"Australia East\"\r\n },\r\n \"administratorLogin\": {\r\n \"value\": \"testuser\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3000" + "3002" ], "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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-13T04:09:36.5118033Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"40934dd5-2814-41d0-a737-bbd3565935a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:24.8838916Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"aaed5b32-64eb-487a-8cfd-c56736634ec6\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2295" + "2312" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,13 +139,13 @@ "1198" ], "x-ms-request-id": [ - "40934dd5-2814-41d0-a737-bbd3565935a3" + "aaed5b32-64eb-487a-8cfd-c56736634ec6" ], "x-ms-correlation-request-id": [ - "40934dd5-2814-41d0-a737-bbd3565935a3" + "aaed5b32-64eb-487a-8cfd-c56736634ec6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040936Z:40934dd5-2814-41d0-a737-bbd3565935a3" + "WESTEUROPE:20150827T170424Z:aaed5b32-64eb-487a-8cfd-c56736634ec6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -154,31 +154,31 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:36 GMT" + "Thu, 27 Aug 2015 17:04:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": "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 \"version\": \"12.0\"\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 \"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\": \"AllowAllWindowsAzureIps\",\r\n \"properties\": {\r\n \"endIpAddress\": \"222.222.222.222\",\r\n \"startIpAddress\": \"1.1.1.1\"\r\n },\r\n \"type\": \"firewallrules\"\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-dm-cmdlet-db45262\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"Australia East\"\r\n },\r\n \"administratorLogin\": {\r\n \"value\": \"testuser\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "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 \"version\": \"12.0\"\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 \"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\": \"AllowAllWindowsAzureIps\",\r\n \"properties\": {\r\n \"endIpAddress\": \"222.222.222.222\",\r\n \"startIpAddress\": \"1.1.1.1\"\r\n },\r\n \"type\": \"firewallrules\"\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-dm-cmdlet-db457822\"\r\n },\r\n \"serverName\": {\r\n \"value\": \"sql-dm-cmdlet-server457822\"\r\n },\r\n \"EnvLocation\": {\r\n \"value\": \"Australia East\"\r\n },\r\n \"administratorLogin\": {\r\n \"value\": \"testuser\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3000" + "3002" ], "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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-13T04:09:39.4233723Z\",\r\n \"duration\": \"PT1.7384116S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:28.9972256Z\",\r\n \"duration\": \"PT2.8500968S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2303" + "2320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -193,13 +193,13 @@ "1197" ], "x-ms-request-id": [ - "69adddf0-5969-4ac9-8421-3180d90e494d" + "efe290b3-105c-4203-982a-7d6d77bfac49" ], "x-ms-correlation-request-id": [ - "69adddf0-5969-4ac9-8421-3180d90e494d" + "efe290b3-105c-4203-982a-7d6d77bfac49" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040940Z:69adddf0-5969-4ac9-8421-3180d90e494d" + "WESTEUROPE:20150827T170430Z:efe290b3-105c-4203-982a-7d6d77bfac49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,14 +208,62 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:40 GMT" + "Thu, 27 Aug 2015 17:04:29 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-request-id": [ + "dc3d3380-34f6-47ff-801e-cf299dfc48f8" + ], + "x-ms-correlation-request-id": [ + "dc3d3380-34f6-47ff-801e-cf299dfc48f8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T170431Z:dc3d3380-34f6-47ff-801e-cf299dfc48f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:04:30 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": { @@ -238,16 +286,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14908" ], "x-ms-request-id": [ - "9ec4b42d-143d-472a-8a43-439c91ba4bca" + "1b1bd48b-41d0-41c8-8953-a649847e6e6b" ], "x-ms-correlation-request-id": [ - "9ec4b42d-143d-472a-8a43-439c91ba4bca" + "1b1bd48b-41d0-41c8-8953-a649847e6e6b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040940Z:9ec4b42d-143d-472a-8a43-439c91ba4bca" + "WESTEUROPE:20150827T170434Z:1b1bd48b-41d0-41c8-8953-a649847e6e6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,14 +304,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:40 GMT" + "Thu, 27 Aug 2015 17:04:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -286,16 +334,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14906" ], "x-ms-request-id": [ - "8e6e373e-376a-4b0f-aae2-068f7b700e86" + "01e2d4e3-54e4-4ac2-a0e3-2fe84ad7b8c8" ], "x-ms-correlation-request-id": [ - "8e6e373e-376a-4b0f-aae2-068f7b700e86" + "01e2d4e3-54e4-4ac2-a0e3-2fe84ad7b8c8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040944Z:8e6e373e-376a-4b0f-aae2-068f7b700e86" + "WESTEUROPE:20150827T170438Z:01e2d4e3-54e4-4ac2-a0e3-2fe84ad7b8c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,14 +352,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:44 GMT" + "Thu, 27 Aug 2015 17:04:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -334,16 +382,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14904" ], "x-ms-request-id": [ - "572399ca-4ac3-44d4-9c1e-df9bafb9b9bc" + "9a8c6459-e83f-480c-a355-6e3f0f45781d" ], "x-ms-correlation-request-id": [ - "572399ca-4ac3-44d4-9c1e-df9bafb9b9bc" + "9a8c6459-e83f-480c-a355-6e3f0f45781d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040947Z:572399ca-4ac3-44d4-9c1e-df9bafb9b9bc" + "WESTEUROPE:20150827T170442Z:9a8c6459-e83f-480c-a355-6e3f0f45781d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,14 +400,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:47 GMT" + "Thu, 27 Aug 2015 17:04:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -382,16 +430,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14902" ], "x-ms-request-id": [ - "863a9725-398b-4c55-a7de-375e28a25df2" + "1817125e-150f-4d43-b48c-b4a87e84f56f" ], "x-ms-correlation-request-id": [ - "863a9725-398b-4c55-a7de-375e28a25df2" + "1817125e-150f-4d43-b48c-b4a87e84f56f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040951Z:863a9725-398b-4c55-a7de-375e28a25df2" + "WESTEUROPE:20150827T170445Z:1817125e-150f-4d43-b48c-b4a87e84f56f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,14 +448,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:51 GMT" + "Thu, 27 Aug 2015 17:04:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -430,16 +478,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14900" ], "x-ms-request-id": [ - "adb50ee0-5f27-479d-96fc-fa4c3e02551a" + "a733518d-ebb0-459e-89e0-ca3b07b13b1c" ], "x-ms-correlation-request-id": [ - "adb50ee0-5f27-479d-96fc-fa4c3e02551a" + "a733518d-ebb0-459e-89e0-ca3b07b13b1c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040954Z:adb50ee0-5f27-479d-96fc-fa4c3e02551a" + "WESTEUROPE:20150827T170449Z:a733518d-ebb0-459e-89e0-ca3b07b13b1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,14 +496,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:54 GMT" + "Thu, 27 Aug 2015 17:04:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -478,16 +526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14898" ], "x-ms-request-id": [ - "fcaf2201-dbe6-4a35-b061-c7e24ad72a48" + "750e2bd8-ef85-432a-b0a7-2d369ac4a27f" ], "x-ms-correlation-request-id": [ - "fcaf2201-dbe6-4a35-b061-c7e24ad72a48" + "750e2bd8-ef85-432a-b0a7-2d369ac4a27f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040958Z:fcaf2201-dbe6-4a35-b061-c7e24ad72a48" + "WESTEUROPE:20150827T170453Z:750e2bd8-ef85-432a-b0a7-2d369ac4a27f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,14 +544,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:57 GMT" + "Thu, 27 Aug 2015 17:04:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -526,16 +574,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14896" ], "x-ms-request-id": [ - "c2947f0f-65b9-4274-8e05-3a6c244d0622" + "f1c23fbf-fa0d-4cbc-8955-4e263d56e06f" ], "x-ms-correlation-request-id": [ - "c2947f0f-65b9-4274-8e05-3a6c244d0622" + "f1c23fbf-fa0d-4cbc-8955-4e263d56e06f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041001Z:c2947f0f-65b9-4274-8e05-3a6c244d0622" + "WESTEUROPE:20150827T170456Z:f1c23fbf-fa0d-4cbc-8955-4e263d56e06f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -544,14 +592,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:01 GMT" + "Thu, 27 Aug 2015 17:04:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -574,16 +622,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14894" ], "x-ms-request-id": [ - "97353804-259e-477f-be0a-6245bf1344b7" + "4412857f-6b0b-4458-8cb8-fc8c8739d03c" ], "x-ms-correlation-request-id": [ - "97353804-259e-477f-be0a-6245bf1344b7" + "4412857f-6b0b-4458-8cb8-fc8c8739d03c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041005Z:97353804-259e-477f-be0a-6245bf1344b7" + "WESTEUROPE:20150827T170500Z:4412857f-6b0b-4458-8cb8-fc8c8739d03c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592,14 +640,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:04 GMT" + "Thu, 27 Aug 2015 17:05:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -622,16 +670,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14898" ], "x-ms-request-id": [ - "0d5dad1a-775e-472d-9ac0-f92513187ee3" + "d1688bf2-4cca-48dc-a5ad-bb33d2fa6f2e" ], "x-ms-correlation-request-id": [ - "0d5dad1a-775e-472d-9ac0-f92513187ee3" + "d1688bf2-4cca-48dc-a5ad-bb33d2fa6f2e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041008Z:0d5dad1a-775e-472d-9ac0-f92513187ee3" + "WESTEUROPE:20150827T170504Z:d1688bf2-4cca-48dc-a5ad-bb33d2fa6f2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,14 +688,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:08 GMT" + "Thu, 27 Aug 2015 17:05:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -670,16 +718,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14895" ], "x-ms-request-id": [ - "abaa8325-d993-4035-aeed-6bdd629b3ebd" + "185ccecb-3a42-41de-a024-94d077d0392b" ], "x-ms-correlation-request-id": [ - "abaa8325-d993-4035-aeed-6bdd629b3ebd" + "185ccecb-3a42-41de-a024-94d077d0392b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041012Z:abaa8325-d993-4035-aeed-6bdd629b3ebd" + "WESTEUROPE:20150827T170507Z:185ccecb-3a42-41de-a024-94d077d0392b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -688,14 +736,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:11 GMT" + "Thu, 27 Aug 2015 17:05:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -718,16 +766,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14893" ], "x-ms-request-id": [ - "e2ae3e89-09e3-4bee-8e72-15d7ecec25c1" + "4718db36-27ab-4e99-8ae3-749fd0cbde9e" ], "x-ms-correlation-request-id": [ - "e2ae3e89-09e3-4bee-8e72-15d7ecec25c1" + "4718db36-27ab-4e99-8ae3-749fd0cbde9e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041015Z:e2ae3e89-09e3-4bee-8e72-15d7ecec25c1" + "WESTEUROPE:20150827T170511Z:4718db36-27ab-4e99-8ae3-749fd0cbde9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,14 +784,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:14 GMT" + "Thu, 27 Aug 2015 17:05:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -766,16 +814,304 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14891" + ], + "x-ms-request-id": [ + "b57a780f-fac3-4866-895c-8161b0798553" + ], + "x-ms-correlation-request-id": [ + "b57a780f-fac3-4866-895c-8161b0798553" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T170515Z:b57a780f-fac3-4866-895c-8161b0798553" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:05:14 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}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-request-id": [ + "38cf4c2b-cc29-4528-8cd9-2b970bba2902" + ], + "x-ms-correlation-request-id": [ + "38cf4c2b-cc29-4528-8cd9-2b970bba2902" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T170518Z:38cf4c2b-cc29-4528-8cd9-2b970bba2902" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:05:18 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}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-request-id": [ + "ce9720e6-cc68-4ffa-a811-6be5400deaff" + ], + "x-ms-correlation-request-id": [ + "ce9720e6-cc68-4ffa-a811-6be5400deaff" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T170522Z:ce9720e6-cc68-4ffa-a811-6be5400deaff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:05:22 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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-request-id": [ + "1fb1628c-b55c-40e4-b6f8-ce6f9dca161a" + ], + "x-ms-correlation-request-id": [ + "1fb1628c-b55c-40e4-b6f8-ce6f9dca161a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T170526Z:1fb1628c-b55c-40e4-b6f8-ce6f9dca161a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:05:25 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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ + "1396" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-request-id": [ + "cb8be9c0-0082-4135-852b-242d8fe1fa14" + ], + "x-ms-correlation-request-id": [ + "cb8be9c0-0082-4135-852b-242d8fe1fa14" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T170530Z:cb8be9c0-0082-4135-852b-242d8fe1fa14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:05:29 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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ + "1396" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14881" + ], + "x-ms-request-id": [ + "156f15cd-6b25-424a-8c22-82da31124596" + ], + "x-ms-correlation-request-id": [ + "156f15cd-6b25-424a-8c22-82da31124596" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T170534Z:156f15cd-6b25-424a-8c22-82da31124596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:05:33 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-08-27T17:05:35.5925949Z\",\r\n \"duration\": \"PT11.9221971S\",\r\n \"trackingId\": \"cbedf532-b8f5-4966-84a0-946b04adf51b\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ + "14878" ], "x-ms-request-id": [ - "98c73a2e-d480-4cde-9da0-08fa2f280053" + "6489b2ee-8cf2-4ffd-a54b-8b7b6dcaccd1" ], "x-ms-correlation-request-id": [ - "98c73a2e-d480-4cde-9da0-08fa2f280053" + "6489b2ee-8cf2-4ffd-a54b-8b7b6dcaccd1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041019Z:98c73a2e-d480-4cde-9da0-08fa2f280053" + "WESTEUROPE:20150827T170537Z:6489b2ee-8cf2-4ffd-a54b-8b7b6dcaccd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -784,14 +1120,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:18 GMT" + "Thu, 27 Aug 2015 17:05:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -799,10 +1135,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-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:05:35.5925949Z\",\r\n \"duration\": \"PT11.9221971S\",\r\n \"trackingId\": \"cbedf532-b8f5-4966-84a0-946b04adf51b\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "662" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -814,16 +1150,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14876" ], "x-ms-request-id": [ - "5e70443c-78f1-4661-92e8-a7a65d5bf99e" + "addad797-0847-43c5-842e-77b62499410f" ], "x-ms-correlation-request-id": [ - "5e70443c-78f1-4661-92e8-a7a65d5bf99e" + "addad797-0847-43c5-842e-77b62499410f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041022Z:5e70443c-78f1-4661-92e8-a7a65d5bf99e" + "WESTEUROPE:20150827T170541Z:addad797-0847-43c5-842e-77b62499410f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -832,14 +1168,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:21 GMT" + "Thu, 27 Aug 2015 17:05:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -847,10 +1183,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-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:05:35.5925949Z\",\r\n \"duration\": \"PT11.9221971S\",\r\n \"trackingId\": \"cbedf532-b8f5-4966-84a0-946b04adf51b\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "1388" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -862,16 +1198,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14874" ], "x-ms-request-id": [ - "fc316c7b-5a32-4ddb-a790-9dfc1a0d2d46" + "66f59426-7099-4174-88fb-263a02773505" ], "x-ms-correlation-request-id": [ - "fc316c7b-5a32-4ddb-a790-9dfc1a0d2d46" + "66f59426-7099-4174-88fb-263a02773505" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041026Z:fc316c7b-5a32-4ddb-a790-9dfc1a0d2d46" + "WESTEUROPE:20150827T170545Z:66f59426-7099-4174-88fb-263a02773505" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -880,14 +1216,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:26 GMT" + "Thu, 27 Aug 2015 17:05:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -895,10 +1231,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:26.4890486Z\",\r\n \"duration\": \"PT5.1773751S\",\r\n \"trackingId\": \"7ec8565a-525e-410b-af0e-ab5d2290dcc2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:05:35.5925949Z\",\r\n \"duration\": \"PT11.9221971S\",\r\n \"trackingId\": \"cbedf532-b8f5-4966-84a0-946b04adf51b\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2101" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -910,16 +1246,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14872" ], "x-ms-request-id": [ - "4360834b-4d14-44f3-9e44-e39e18e6ae42" + "00c8bce3-da31-46b3-9a30-0a50e7648040" ], "x-ms-correlation-request-id": [ - "4360834b-4d14-44f3-9e44-e39e18e6ae42" + "00c8bce3-da31-46b3-9a30-0a50e7648040" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041029Z:4360834b-4d14-44f3-9e44-e39e18e6ae42" + "WESTEUROPE:20150827T170549Z:00c8bce3-da31-46b3-9a30-0a50e7648040" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -928,14 +1264,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:29 GMT" + "Thu, 27 Aug 2015 17:05:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -943,10 +1279,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:26.4890486Z\",\r\n \"duration\": \"PT5.1773751S\",\r\n \"trackingId\": \"7ec8565a-525e-410b-af0e-ab5d2290dcc2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:05:35.5925949Z\",\r\n \"duration\": \"PT11.9221971S\",\r\n \"trackingId\": \"cbedf532-b8f5-4966-84a0-946b04adf51b\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2101" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -958,16 +1294,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14870" ], "x-ms-request-id": [ - "f27c3c41-2bfb-4c8e-823a-211bb6aa37d1" + "55550cd5-8cbd-4c2b-8be6-bdebd1f8e333" ], "x-ms-correlation-request-id": [ - "f27c3c41-2bfb-4c8e-823a-211bb6aa37d1" + "55550cd5-8cbd-4c2b-8be6-bdebd1f8e333" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041033Z:f27c3c41-2bfb-4c8e-823a-211bb6aa37d1" + "WESTEUROPE:20150827T170553Z:55550cd5-8cbd-4c2b-8be6-bdebd1f8e333" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -976,14 +1312,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:33 GMT" + "Thu, 27 Aug 2015 17:05:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -991,10 +1327,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:26.4890486Z\",\r\n \"duration\": \"PT5.1773751S\",\r\n \"trackingId\": \"7ec8565a-525e-410b-af0e-ab5d2290dcc2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:05:35.5925949Z\",\r\n \"duration\": \"PT11.9221971S\",\r\n \"trackingId\": \"cbedf532-b8f5-4966-84a0-946b04adf51b\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2101" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1006,16 +1342,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14868" ], "x-ms-request-id": [ - "c01cfea5-c0bf-426c-839e-2ed4b3e987ca" + "a1174ae3-7799-41fa-9c51-072bcc478893" ], "x-ms-correlation-request-id": [ - "c01cfea5-c0bf-426c-839e-2ed4b3e987ca" + "a1174ae3-7799-41fa-9c51-072bcc478893" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041037Z:c01cfea5-c0bf-426c-839e-2ed4b3e987ca" + "WESTEUROPE:20150827T170557Z:a1174ae3-7799-41fa-9c51-072bcc478893" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1024,14 +1360,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:37 GMT" + "Thu, 27 Aug 2015 17:05:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1039,10 +1375,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:26.4890486Z\",\r\n \"duration\": \"PT5.1773751S\",\r\n \"trackingId\": \"7ec8565a-525e-410b-af0e-ab5d2290dcc2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:05:35.5925949Z\",\r\n \"duration\": \"PT11.9221971S\",\r\n \"trackingId\": \"cbedf532-b8f5-4966-84a0-946b04adf51b\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2101" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1054,16 +1390,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14866" ], "x-ms-request-id": [ - "d2f9fd62-3151-4ef8-bec4-48de5980f8a9" + "498ed7c3-5c64-40d8-9893-a07439e38b91" ], "x-ms-correlation-request-id": [ - "d2f9fd62-3151-4ef8-bec4-48de5980f8a9" + "498ed7c3-5c64-40d8-9893-a07439e38b91" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041040Z:d2f9fd62-3151-4ef8-bec4-48de5980f8a9" + "WESTEUROPE:20150827T170601Z:498ed7c3-5c64-40d8-9893-a07439e38b91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1072,14 +1408,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:40 GMT" + "Thu, 27 Aug 2015 17:06:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1087,10 +1423,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:26.4890486Z\",\r\n \"duration\": \"PT5.1773751S\",\r\n \"trackingId\": \"7ec8565a-525e-410b-af0e-ab5d2290dcc2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:05:35.5925949Z\",\r\n \"duration\": \"PT11.9221971S\",\r\n \"trackingId\": \"cbedf532-b8f5-4966-84a0-946b04adf51b\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2101" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1102,16 +1438,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14864" ], "x-ms-request-id": [ - "535708bb-b9c2-4492-ad3c-71d78be86422" + "17b28694-1e20-43c4-adb1-7b4cccbf8208" ], "x-ms-correlation-request-id": [ - "535708bb-b9c2-4492-ad3c-71d78be86422" + "17b28694-1e20-43c4-adb1-7b4cccbf8208" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041044Z:535708bb-b9c2-4492-ad3c-71d78be86422" + "WESTEUROPE:20150827T170605Z:17b28694-1e20-43c4-adb1-7b4cccbf8208" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1120,14 +1456,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:44 GMT" + "Thu, 27 Aug 2015 17:06:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1135,10 +1471,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:26.4890486Z\",\r\n \"duration\": \"PT5.1773751S\",\r\n \"trackingId\": \"7ec8565a-525e-410b-af0e-ab5d2290dcc2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:06:07.0182525Z\",\r\n \"duration\": \"PT43.3478547S\",\r\n \"trackingId\": \"f152e8b6-79a5-4f5e-a7b7-a3b6eaad4e1a\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2101" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1150,16 +1486,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14861" ], "x-ms-request-id": [ - "84bb3623-4b8f-4987-9517-f033174367a1" + "8413a2a0-62a6-4019-9b6f-3b583d33d0e0" ], "x-ms-correlation-request-id": [ - "84bb3623-4b8f-4987-9517-f033174367a1" + "8413a2a0-62a6-4019-9b6f-3b583d33d0e0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041048Z:84bb3623-4b8f-4987-9517-f033174367a1" + "WESTEUROPE:20150827T170609Z:8413a2a0-62a6-4019-9b6f-3b583d33d0e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1168,14 +1504,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:47 GMT" + "Thu, 27 Aug 2015 17:06:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1183,10 +1519,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:26.4890486Z\",\r\n \"duration\": \"PT5.1773751S\",\r\n \"trackingId\": \"7ec8565a-525e-410b-af0e-ab5d2290dcc2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:06:07.0182525Z\",\r\n \"duration\": \"PT43.3478547S\",\r\n \"trackingId\": \"f152e8b6-79a5-4f5e-a7b7-a3b6eaad4e1a\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2101" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1198,16 +1534,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14859" ], "x-ms-request-id": [ - "2d9b0bf8-6573-4244-af75-21c93895c759" + "b2320782-8e9e-4280-8e3b-d33f094210e7" ], "x-ms-correlation-request-id": [ - "2d9b0bf8-6573-4244-af75-21c93895c759" + "b2320782-8e9e-4280-8e3b-d33f094210e7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041051Z:2d9b0bf8-6573-4244-af75-21c93895c759" + "WESTEUROPE:20150827T170613Z:b2320782-8e9e-4280-8e3b-d33f094210e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1216,14 +1552,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:51 GMT" + "Thu, 27 Aug 2015 17:06:12 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1231,10 +1567,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:26.4890486Z\",\r\n \"duration\": \"PT5.1773751S\",\r\n \"trackingId\": \"7ec8565a-525e-410b-af0e-ab5d2290dcc2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:06:07.0182525Z\",\r\n \"duration\": \"PT43.3478547S\",\r\n \"trackingId\": \"f152e8b6-79a5-4f5e-a7b7-a3b6eaad4e1a\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2101" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1246,16 +1582,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14857" ], "x-ms-request-id": [ - "a8c2d865-21ee-47e3-89b9-09686904a549" + "324c1fa8-edb2-4e7b-a186-8620164be62b" ], "x-ms-correlation-request-id": [ - "a8c2d865-21ee-47e3-89b9-09686904a549" + "324c1fa8-edb2-4e7b-a186-8620164be62b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041055Z:a8c2d865-21ee-47e3-89b9-09686904a549" + "WESTEUROPE:20150827T170617Z:324c1fa8-edb2-4e7b-a186-8620164be62b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1264,14 +1600,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:54 GMT" + "Thu, 27 Aug 2015 17:06:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1279,10 +1615,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:57.9990006Z\",\r\n \"duration\": \"PT36.6873271S\",\r\n \"trackingId\": \"9cbe6b70-57c2-4fae-a2ce-8020fcf6effb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:06:07.0182525Z\",\r\n \"duration\": \"PT43.3478547S\",\r\n \"trackingId\": \"f152e8b6-79a5-4f5e-a7b7-a3b6eaad4e1a\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2102" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1294,16 +1630,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14855" ], "x-ms-request-id": [ - "b8138350-043a-4fa4-a803-6decf681971c" + "49fb7527-9bc7-4c79-b6a3-703aa35d78f1" ], "x-ms-correlation-request-id": [ - "b8138350-043a-4fa4-a803-6decf681971c" + "49fb7527-9bc7-4c79-b6a3-703aa35d78f1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041059Z:b8138350-043a-4fa4-a803-6decf681971c" + "WESTEUROPE:20150827T170621Z:49fb7527-9bc7-4c79-b6a3-703aa35d78f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1312,14 +1648,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:58 GMT" + "Thu, 27 Aug 2015 17:06:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1327,10 +1663,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:57.9990006Z\",\r\n \"duration\": \"PT36.6873271S\",\r\n \"trackingId\": \"9cbe6b70-57c2-4fae-a2ce-8020fcf6effb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:06:07.0182525Z\",\r\n \"duration\": \"PT43.3478547S\",\r\n \"trackingId\": \"f152e8b6-79a5-4f5e-a7b7-a3b6eaad4e1a\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2102" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1342,16 +1678,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14853" ], "x-ms-request-id": [ - "a46883e7-b6b7-4ee3-9f6c-e5fd477bf725" + "e1af3ade-5e01-4e46-916a-1bbdd0a6bf5c" ], "x-ms-correlation-request-id": [ - "a46883e7-b6b7-4ee3-9f6c-e5fd477bf725" + "e1af3ade-5e01-4e46-916a-1bbdd0a6bf5c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041102Z:a46883e7-b6b7-4ee3-9f6c-e5fd477bf725" + "WESTEUROPE:20150827T170625Z:e1af3ade-5e01-4e46-916a-1bbdd0a6bf5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1360,14 +1696,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:02 GMT" + "Thu, 27 Aug 2015 17:06:24 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1375,10 +1711,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:57.9990006Z\",\r\n \"duration\": \"PT36.6873271S\",\r\n \"trackingId\": \"9cbe6b70-57c2-4fae-a2ce-8020fcf6effb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:06:07.0182525Z\",\r\n \"duration\": \"PT43.3478547S\",\r\n \"trackingId\": \"f152e8b6-79a5-4f5e-a7b7-a3b6eaad4e1a\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2102" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1390,16 +1726,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14851" ], "x-ms-request-id": [ - "5b7a1fa7-0b85-46e6-9d67-2e24480f1716" + "43aaadac-6aff-4bd3-86dc-f124bc2585bd" ], "x-ms-correlation-request-id": [ - "5b7a1fa7-0b85-46e6-9d67-2e24480f1716" + "43aaadac-6aff-4bd3-86dc-f124bc2585bd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041106Z:5b7a1fa7-0b85-46e6-9d67-2e24480f1716" + "WESTEUROPE:20150827T170629Z:43aaadac-6aff-4bd3-86dc-f124bc2585bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1408,14 +1744,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:05 GMT" + "Thu, 27 Aug 2015 17:06:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1423,10 +1759,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:57.9990006Z\",\r\n \"duration\": \"PT36.6873271S\",\r\n \"trackingId\": \"9cbe6b70-57c2-4fae-a2ce-8020fcf6effb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:06:07.0182525Z\",\r\n \"duration\": \"PT43.3478547S\",\r\n \"trackingId\": \"f152e8b6-79a5-4f5e-a7b7-a3b6eaad4e1a\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2102" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1438,16 +1774,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14849" ], "x-ms-request-id": [ - "508bb31f-5339-4652-b903-c4f66f9f6e19" + "73106db3-347f-437e-949c-46a5b64649b5" ], "x-ms-correlation-request-id": [ - "508bb31f-5339-4652-b903-c4f66f9f6e19" + "73106db3-347f-437e-949c-46a5b64649b5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041110Z:508bb31f-5339-4652-b903-c4f66f9f6e19" + "WESTEUROPE:20150827T170633Z:73106db3-347f-437e-949c-46a5b64649b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1456,14 +1792,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:10 GMT" + "Thu, 27 Aug 2015 17:06:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1471,10 +1807,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:57.9990006Z\",\r\n \"duration\": \"PT36.6873271S\",\r\n \"trackingId\": \"9cbe6b70-57c2-4fae-a2ce-8020fcf6effb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:06:07.0182525Z\",\r\n \"duration\": \"PT43.3478547S\",\r\n \"trackingId\": \"f152e8b6-79a5-4f5e-a7b7-a3b6eaad4e1a\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2102" + "2116" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1486,16 +1822,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14847" ], "x-ms-request-id": [ - "6883c248-f6dc-4cdc-bfc7-aaaa6060935d" + "65f05aaf-801b-4a09-89ce-8d8c5b50c656" ], "x-ms-correlation-request-id": [ - "6883c248-f6dc-4cdc-bfc7-aaaa6060935d" + "65f05aaf-801b-4a09-89ce-8d8c5b50c656" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041113Z:6883c248-f6dc-4cdc-bfc7-aaaa6060935d" + "WESTEUROPE:20150827T170637Z:65f05aaf-801b-4a09-89ce-8d8c5b50c656" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1504,14 +1840,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:13 GMT" + "Thu, 27 Aug 2015 17:06:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1519,10 +1855,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:57.9990006Z\",\r\n \"duration\": \"PT36.6873271S\",\r\n \"trackingId\": \"9cbe6b70-57c2-4fae-a2ce-8020fcf6effb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:06:39.7503624Z\",\r\n \"duration\": \"PT1M16.0799646S\",\r\n \"trackingId\": \"812a1c5e-7c89-421b-8dc2-0d8fd281c4f6\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2102" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1534,16 +1870,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14845" ], "x-ms-request-id": [ - "cbeb0ccf-c0e3-4d78-b2f2-5510b3fe3eb1" + "9c6a62a6-03c5-4ec1-8166-e36f66aae124" ], "x-ms-correlation-request-id": [ - "cbeb0ccf-c0e3-4d78-b2f2-5510b3fe3eb1" + "9c6a62a6-03c5-4ec1-8166-e36f66aae124" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041117Z:cbeb0ccf-c0e3-4d78-b2f2-5510b3fe3eb1" + "WESTEUROPE:20150827T170641Z:9c6a62a6-03c5-4ec1-8166-e36f66aae124" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1552,14 +1888,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:17 GMT" + "Thu, 27 Aug 2015 17:06:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1567,10 +1903,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:57.9990006Z\",\r\n \"duration\": \"PT36.6873271S\",\r\n \"trackingId\": \"9cbe6b70-57c2-4fae-a2ce-8020fcf6effb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-08-27T17:06:39.7503624Z\",\r\n \"duration\": \"PT1M16.0799646S\",\r\n \"trackingId\": \"812a1c5e-7c89-421b-8dc2-0d8fd281c4f6\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2102" + "2117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1582,16 +1918,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14843" ], "x-ms-request-id": [ - "755f548d-e0d5-4ba4-b2d0-6cde81d0b180" + "33e96439-de41-4f5c-9a8f-5431357bcd1c" ], "x-ms-correlation-request-id": [ - "755f548d-e0d5-4ba4-b2d0-6cde81d0b180" + "33e96439-de41-4f5c-9a8f-5431357bcd1c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041121Z:755f548d-e0d5-4ba4-b2d0-6cde81d0b180" + "WESTEUROPE:20150827T170645Z:33e96439-de41-4f5c-9a8f-5431357bcd1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1600,14 +1936,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:21 GMT" + "Thu, 27 Aug 2015 17:06:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1615,10 +1951,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:57.9990006Z\",\r\n \"duration\": \"PT36.6873271S\",\r\n \"trackingId\": \"9cbe6b70-57c2-4fae-a2ce-8020fcf6effb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:06:45.7957879Z\",\r\n \"duration\": \"PT1M22.1253901S\",\r\n \"trackingId\": \"7eee86d4-ab9c-4cb7-a5e9-0a3f1dfa3a99\",\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-08-27T17:05:26.4732242Z\",\r\n \"duration\": \"PT2.7537229S\",\r\n \"trackingId\": \"48426905-23d7-4578-8d08-d4a8c9d2b40b\",\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-08-27T17:05:23.5865406Z\",\r\n \"duration\": \"PT53.2210902S\",\r\n \"trackingId\": \"d4e428d0-654f-4581-b647-393fca2dcb0f\",\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": [ - "2102" + "2119" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1630,16 +1966,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14841" ], "x-ms-request-id": [ - "0ba25701-a08a-444c-951c-ce4e088df964" + "a0f979b3-a061-40d0-adc4-c2a860227976" ], "x-ms-correlation-request-id": [ - "0ba25701-a08a-444c-951c-ce4e088df964" + "a0f979b3-a061-40d0-adc4-c2a860227976" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041125Z:0ba25701-a08a-444c-951c-ce4e088df964" + "WESTEUROPE:20150827T170649Z:a0f979b3-a061-40d0-adc4-c2a860227976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1648,14 +1984,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:24 GMT" + "Thu, 27 Aug 2015 17:06:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1663,10 +1999,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:10:57.9990006Z\",\r\n \"duration\": \"PT36.6873271S\",\r\n \"trackingId\": \"9cbe6b70-57c2-4fae-a2ce-8020fcf6effb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2102" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1678,16 +2014,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14909" ], "x-ms-request-id": [ - "7551cc5f-a82f-4bc7-bbda-46d7ceeec86b" + "0544ca50-3b89-4f39-a322-6aabd12a4d7f" ], "x-ms-correlation-request-id": [ - "7551cc5f-a82f-4bc7-bbda-46d7ceeec86b" + "0544ca50-3b89-4f39-a322-6aabd12a4d7f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041129Z:7551cc5f-a82f-4bc7-bbda-46d7ceeec86b" + "WESTEUROPE:20150827T170431Z:0544ca50-3b89-4f39-a322-6aabd12a4d7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1696,14 +2032,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:29 GMT" + "Thu, 27 Aug 2015 17:04:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -1711,10 +2047,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-rg45262/deployments/sql-ddm-test-env-setup/operations/D1AA2D155E2774E4\",\r\n \"operationId\": \"D1AA2D155E2774E4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:11:31.1979625Z\",\r\n \"duration\": \"PT1M9.886289S\",\r\n \"trackingId\": \"a48fd3ce-6b4c-4bb2-a7b7-ab49744ca101\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/3AC24809A8914CBE\",\r\n \"operationId\": \"3AC24809A8914CBE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:24.0791434Z\",\r\n \"duration\": \"PT2.7843017S\",\r\n \"trackingId\": \"a76210c6-e283-4c53-adcc-e83ce6e82ab7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup/operations/461E638829E83FFA\",\r\n \"operationId\": \"461E638829E83FFA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:10:21.0575686Z\",\r\n \"duration\": \"PT41.1327554S\",\r\n \"trackingId\": \"d0d0695c-6c95-445a-a823-591f5ac1ea97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\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-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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2103" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1726,16 +2062,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14907" ], "x-ms-request-id": [ - "c33eb357-4f04-4700-8170-56dea0bfb753" + "f8898e4b-7738-4d2d-b0b4-43a27a8d966d" ], "x-ms-correlation-request-id": [ - "c33eb357-4f04-4700-8170-56dea0bfb753" + "f8898e4b-7738-4d2d-b0b4-43a27a8d966d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041133Z:c33eb357-4f04-4700-8170-56dea0bfb753" + "WESTEUROPE:20150827T170435Z:f8898e4b-7738-4d2d-b0b4-43a27a8d966d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1744,14 +2080,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:32 GMT" + "Thu, 27 Aug 2015 17:04:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -1759,10 +2095,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1774,16 +2110,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14905" ], "x-ms-request-id": [ - "aec9d95f-d126-4aa9-ab7c-599395376223" + "1a15efbb-5193-4b10-b353-de80458add1a" ], "x-ms-correlation-request-id": [ - "aec9d95f-d126-4aa9-ab7c-599395376223" + "1a15efbb-5193-4b10-b353-de80458add1a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040941Z:aec9d95f-d126-4aa9-ab7c-599395376223" + "WESTEUROPE:20150827T170439Z:1a15efbb-5193-4b10-b353-de80458add1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1792,14 +2128,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:41 GMT" + "Thu, 27 Aug 2015 17:04:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -1807,10 +2143,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1822,16 +2158,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14903" ], "x-ms-request-id": [ - "c5bbfd18-2212-415f-b639-bbeb6e90f25e" + "69a2f48d-aba3-4150-beed-a2dd66ae4f26" ], "x-ms-correlation-request-id": [ - "c5bbfd18-2212-415f-b639-bbeb6e90f25e" + "69a2f48d-aba3-4150-beed-a2dd66ae4f26" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040945Z:c5bbfd18-2212-415f-b639-bbeb6e90f25e" + "WESTEUROPE:20150827T170442Z:69a2f48d-aba3-4150-beed-a2dd66ae4f26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1840,14 +2176,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:44 GMT" + "Thu, 27 Aug 2015 17:04:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -1855,10 +2191,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1870,16 +2206,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14901" ], "x-ms-request-id": [ - "21533d71-9dab-4749-8b50-7c153433ac9f" + "ffc4f6df-1496-423e-ab7b-fb6219cab5f8" ], "x-ms-correlation-request-id": [ - "21533d71-9dab-4749-8b50-7c153433ac9f" + "ffc4f6df-1496-423e-ab7b-fb6219cab5f8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040948Z:21533d71-9dab-4749-8b50-7c153433ac9f" + "WESTEUROPE:20150827T170446Z:ffc4f6df-1496-423e-ab7b-fb6219cab5f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1888,14 +2224,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:48 GMT" + "Thu, 27 Aug 2015 17:04:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -1903,10 +2239,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1918,16 +2254,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14899" ], "x-ms-request-id": [ - "fad56da2-aa01-4599-a045-20a62be3e5c4" + "67edf9bc-93c6-46ec-9127-e90b0b2f49b1" ], "x-ms-correlation-request-id": [ - "fad56da2-aa01-4599-a045-20a62be3e5c4" + "67edf9bc-93c6-46ec-9127-e90b0b2f49b1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040952Z:fad56da2-aa01-4599-a045-20a62be3e5c4" + "WESTEUROPE:20150827T170450Z:67edf9bc-93c6-46ec-9127-e90b0b2f49b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1936,14 +2272,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:51 GMT" + "Thu, 27 Aug 2015 17:04:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -1951,10 +2287,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1966,16 +2302,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14897" ], "x-ms-request-id": [ - "86cb4424-0210-4ba7-af1a-435f0610549a" + "d61a64a6-3ae0-46ae-9b14-7796f1b85160" ], "x-ms-correlation-request-id": [ - "86cb4424-0210-4ba7-af1a-435f0610549a" + "d61a64a6-3ae0-46ae-9b14-7796f1b85160" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040955Z:86cb4424-0210-4ba7-af1a-435f0610549a" + "WESTEUROPE:20150827T170453Z:d61a64a6-3ae0-46ae-9b14-7796f1b85160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1984,14 +2320,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:55 GMT" + "Thu, 27 Aug 2015 17:04:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -1999,10 +2335,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2014,16 +2350,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14895" ], "x-ms-request-id": [ - "69d33a7e-ed43-442b-b63f-9c835e062875" + "9dc8a2e6-dbf9-4ba0-833b-f59a9d0599cb" ], "x-ms-correlation-request-id": [ - "69d33a7e-ed43-442b-b63f-9c835e062875" + "9dc8a2e6-dbf9-4ba0-833b-f59a9d0599cb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T040958Z:69d33a7e-ed43-442b-b63f-9c835e062875" + "WESTEUROPE:20150827T170457Z:9dc8a2e6-dbf9-4ba0-833b-f59a9d0599cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2032,14 +2368,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:09:58 GMT" + "Thu, 27 Aug 2015 17:04:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2047,10 +2383,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2062,16 +2398,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14899" ], "x-ms-request-id": [ - "1b6d6dfe-49ef-4a0d-bec9-24272b280b43" + "d16647e3-da77-4400-b107-53b3d007b042" ], "x-ms-correlation-request-id": [ - "1b6d6dfe-49ef-4a0d-bec9-24272b280b43" + "d16647e3-da77-4400-b107-53b3d007b042" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041002Z:1b6d6dfe-49ef-4a0d-bec9-24272b280b43" + "WESTEUROPE:20150827T170501Z:d16647e3-da77-4400-b107-53b3d007b042" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2080,14 +2416,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:01 GMT" + "Thu, 27 Aug 2015 17:05:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2095,10 +2431,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2110,16 +2446,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14897" ], "x-ms-request-id": [ - "e4dd5588-0485-4755-a3bb-3c844c121200" + "04e2d212-cef7-4690-b627-cdab9804901c" ], "x-ms-correlation-request-id": [ - "e4dd5588-0485-4755-a3bb-3c844c121200" + "04e2d212-cef7-4690-b627-cdab9804901c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041005Z:e4dd5588-0485-4755-a3bb-3c844c121200" + "WESTEUROPE:20150827T170504Z:04e2d212-cef7-4690-b627-cdab9804901c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2128,14 +2464,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:05 GMT" + "Thu, 27 Aug 2015 17:05:04 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2143,10 +2479,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2158,16 +2494,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14894" ], "x-ms-request-id": [ - "11ee3418-6173-4b7e-b25a-adef7fc7cbd8" + "c744ad49-9b76-4f93-a204-76ffafb8c8fb" ], "x-ms-correlation-request-id": [ - "11ee3418-6173-4b7e-b25a-adef7fc7cbd8" + "c744ad49-9b76-4f93-a204-76ffafb8c8fb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041009Z:11ee3418-6173-4b7e-b25a-adef7fc7cbd8" + "WESTEUROPE:20150827T170508Z:c744ad49-9b76-4f93-a204-76ffafb8c8fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2176,14 +2512,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:08 GMT" + "Thu, 27 Aug 2015 17:05:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2191,10 +2527,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2206,16 +2542,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14892" ], "x-ms-request-id": [ - "ca2a22ae-3b27-46d3-bf84-db88122fa009" + "fe733125-1550-4aaf-929f-522ee09fdf93" ], "x-ms-correlation-request-id": [ - "ca2a22ae-3b27-46d3-bf84-db88122fa009" + "fe733125-1550-4aaf-929f-522ee09fdf93" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041012Z:ca2a22ae-3b27-46d3-bf84-db88122fa009" + "WESTEUROPE:20150827T170512Z:fe733125-1550-4aaf-929f-522ee09fdf93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2224,14 +2560,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:11 GMT" + "Thu, 27 Aug 2015 17:05:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2239,10 +2575,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2254,16 +2590,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14890" ], "x-ms-request-id": [ - "d71b4525-4939-45c9-bb55-8be2619d4b14" + "4e0b34b1-2ae8-44b4-9e90-b53e2820dc81" ], "x-ms-correlation-request-id": [ - "d71b4525-4939-45c9-bb55-8be2619d4b14" + "4e0b34b1-2ae8-44b4-9e90-b53e2820dc81" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041016Z:d71b4525-4939-45c9-bb55-8be2619d4b14" + "WESTEUROPE:20150827T170515Z:4e0b34b1-2ae8-44b4-9e90-b53e2820dc81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2272,14 +2608,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:15 GMT" + "Thu, 27 Aug 2015 17:05:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2287,10 +2623,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2302,16 +2638,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14888" ], "x-ms-request-id": [ - "412b1607-0fa1-4990-9423-f036d0311f08" + "35b1d52c-13f1-4e25-bb8b-ea3dee70bf93" ], "x-ms-correlation-request-id": [ - "412b1607-0fa1-4990-9423-f036d0311f08" + "35b1d52c-13f1-4e25-bb8b-ea3dee70bf93" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041019Z:412b1607-0fa1-4990-9423-f036d0311f08" + "WESTEUROPE:20150827T170519Z:35b1d52c-13f1-4e25-bb8b-ea3dee70bf93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2320,14 +2656,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:18 GMT" + "Thu, 27 Aug 2015 17:05:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2335,10 +2671,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2350,16 +2686,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14886" ], "x-ms-request-id": [ - "f22ad625-2a28-474e-9cc8-700ded02c525" + "c7a25f91-63d8-408c-a3ac-b6aa3ce2d011" ], "x-ms-correlation-request-id": [ - "f22ad625-2a28-474e-9cc8-700ded02c525" + "c7a25f91-63d8-408c-a3ac-b6aa3ce2d011" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041023Z:f22ad625-2a28-474e-9cc8-700ded02c525" + "WESTEUROPE:20150827T170523Z:c7a25f91-63d8-408c-a3ac-b6aa3ce2d011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2368,14 +2704,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:22 GMT" + "Thu, 27 Aug 2015 17:05:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2383,10 +2719,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2398,16 +2734,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14884" ], "x-ms-request-id": [ - "19b4586a-3c4c-4661-8ba5-dcd4cd93c7da" + "6070311f-abb7-4175-80b9-8f8a9ab9d4b7" ], "x-ms-correlation-request-id": [ - "19b4586a-3c4c-4661-8ba5-dcd4cd93c7da" + "6070311f-abb7-4175-80b9-8f8a9ab9d4b7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041026Z:19b4586a-3c4c-4661-8ba5-dcd4cd93c7da" + "WESTEUROPE:20150827T170526Z:6070311f-abb7-4175-80b9-8f8a9ab9d4b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2416,14 +2752,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:26 GMT" + "Thu, 27 Aug 2015 17:05:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2431,10 +2767,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2446,16 +2782,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14882" ], "x-ms-request-id": [ - "c4dd5719-a33d-443e-b869-d64b26c283da" + "1c70d013-d25c-47e3-a2fd-beec4347a43e" ], "x-ms-correlation-request-id": [ - "c4dd5719-a33d-443e-b869-d64b26c283da" + "1c70d013-d25c-47e3-a2fd-beec4347a43e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041030Z:c4dd5719-a33d-443e-b869-d64b26c283da" + "WESTEUROPE:20150827T170530Z:1c70d013-d25c-47e3-a2fd-beec4347a43e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2464,14 +2800,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:30 GMT" + "Thu, 27 Aug 2015 17:05:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2479,10 +2815,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2494,16 +2830,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14879" ], "x-ms-request-id": [ - "3056364f-c9b1-4f8f-a994-900a44f88ace" + "98564ecc-ae23-4cce-bad7-6024618c68cb" ], "x-ms-correlation-request-id": [ - "3056364f-c9b1-4f8f-a994-900a44f88ace" + "98564ecc-ae23-4cce-bad7-6024618c68cb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041034Z:3056364f-c9b1-4f8f-a994-900a44f88ace" + "WESTEUROPE:20150827T170534Z:98564ecc-ae23-4cce-bad7-6024618c68cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2512,14 +2848,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:34 GMT" + "Thu, 27 Aug 2015 17:05:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2527,10 +2863,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2542,16 +2878,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14877" ], "x-ms-request-id": [ - "c2242639-d877-4a4d-a41d-f0624f8f20c8" + "6134744f-275c-4364-9e53-b2705869f120" ], "x-ms-correlation-request-id": [ - "c2242639-d877-4a4d-a41d-f0624f8f20c8" + "6134744f-275c-4364-9e53-b2705869f120" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041037Z:c2242639-d877-4a4d-a41d-f0624f8f20c8" + "WESTEUROPE:20150827T170538Z:6134744f-275c-4364-9e53-b2705869f120" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2560,14 +2896,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:37 GMT" + "Thu, 27 Aug 2015 17:05:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2575,10 +2911,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2590,16 +2926,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14875" ], "x-ms-request-id": [ - "60930c72-f3f1-490d-9b0f-cf51f0ccc032" + "06b77482-adcb-4b60-8953-ac9f3a8c28c0" ], "x-ms-correlation-request-id": [ - "60930c72-f3f1-490d-9b0f-cf51f0ccc032" + "06b77482-adcb-4b60-8953-ac9f3a8c28c0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041041Z:60930c72-f3f1-490d-9b0f-cf51f0ccc032" + "WESTEUROPE:20150827T170542Z:06b77482-adcb-4b60-8953-ac9f3a8c28c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2608,14 +2944,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:41 GMT" + "Thu, 27 Aug 2015 17:05:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2623,10 +2959,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2638,16 +2974,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14873" ], "x-ms-request-id": [ - "3bcb2b4d-64c9-4ff9-98f0-1d4e3895efda" + "8a2d22fb-e2b5-4241-812e-29e2e2d922f2" ], "x-ms-correlation-request-id": [ - "3bcb2b4d-64c9-4ff9-98f0-1d4e3895efda" + "8a2d22fb-e2b5-4241-812e-29e2e2d922f2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041045Z:3bcb2b4d-64c9-4ff9-98f0-1d4e3895efda" + "WESTEUROPE:20150827T170546Z:8a2d22fb-e2b5-4241-812e-29e2e2d922f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2656,14 +2992,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:44 GMT" + "Thu, 27 Aug 2015 17:05:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2671,10 +3007,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2686,16 +3022,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14871" ], "x-ms-request-id": [ - "45c359b4-d852-4679-9e7a-149caedd7793" + "1b3f6f03-4a9c-4c03-89d3-cd5cfc74a5f2" ], "x-ms-correlation-request-id": [ - "45c359b4-d852-4679-9e7a-149caedd7793" + "1b3f6f03-4a9c-4c03-89d3-cd5cfc74a5f2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041048Z:45c359b4-d852-4679-9e7a-149caedd7793" + "WESTEUROPE:20150827T170550Z:1b3f6f03-4a9c-4c03-89d3-cd5cfc74a5f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2704,14 +3040,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:48 GMT" + "Thu, 27 Aug 2015 17:05:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2719,10 +3055,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2734,16 +3070,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14869" ], "x-ms-request-id": [ - "89b26a74-6a0a-4cd8-bb17-7d53bd93061c" + "9be82abc-78ff-430b-a27d-8dbd4be1ede8" ], "x-ms-correlation-request-id": [ - "89b26a74-6a0a-4cd8-bb17-7d53bd93061c" + "9be82abc-78ff-430b-a27d-8dbd4be1ede8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041052Z:89b26a74-6a0a-4cd8-bb17-7d53bd93061c" + "WESTEUROPE:20150827T170554Z:9be82abc-78ff-430b-a27d-8dbd4be1ede8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2752,14 +3088,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:51 GMT" + "Thu, 27 Aug 2015 17:05:54 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2767,10 +3103,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2782,16 +3118,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14867" ], "x-ms-request-id": [ - "0c9b33a1-7562-4007-b2a2-006a8b16141a" + "8e2683c0-46eb-4f23-82c7-5e19f3e39ede" ], "x-ms-correlation-request-id": [ - "0c9b33a1-7562-4007-b2a2-006a8b16141a" + "8e2683c0-46eb-4f23-82c7-5e19f3e39ede" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041056Z:0c9b33a1-7562-4007-b2a2-006a8b16141a" + "WESTEUROPE:20150827T170558Z:8e2683c0-46eb-4f23-82c7-5e19f3e39ede" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,14 +3136,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:55 GMT" + "Thu, 27 Aug 2015 17:05:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2815,10 +3151,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2830,16 +3166,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14865" ], "x-ms-request-id": [ - "3415ca33-0078-403b-95fb-d26d568ebefa" + "3608edb8-7b4e-4db1-9820-66a70be50e31" ], "x-ms-correlation-request-id": [ - "3415ca33-0078-403b-95fb-d26d568ebefa" + "3608edb8-7b4e-4db1-9820-66a70be50e31" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041059Z:3415ca33-0078-403b-95fb-d26d568ebefa" + "WESTEUROPE:20150827T170602Z:3608edb8-7b4e-4db1-9820-66a70be50e31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2848,14 +3184,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:10:59 GMT" + "Thu, 27 Aug 2015 17:06:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2863,10 +3199,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2878,16 +3214,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14863" ], "x-ms-request-id": [ - "0f735f48-edd2-49fa-b858-93fd8ef06b09" + "1c25f7c8-d35b-4a7a-a23a-9db463da2dd3" ], "x-ms-correlation-request-id": [ - "0f735f48-edd2-49fa-b858-93fd8ef06b09" + "1c25f7c8-d35b-4a7a-a23a-9db463da2dd3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041103Z:0f735f48-edd2-49fa-b858-93fd8ef06b09" + "WESTEUROPE:20150827T170606Z:1c25f7c8-d35b-4a7a-a23a-9db463da2dd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2896,14 +3232,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:02 GMT" + "Thu, 27 Aug 2015 17:06:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2911,10 +3247,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2926,16 +3262,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14860" ], "x-ms-request-id": [ - "f20bf902-ccdc-4df6-8bb5-344c16532d9b" + "51ab1a06-1d58-42de-a11c-e1252a07d422" ], "x-ms-correlation-request-id": [ - "f20bf902-ccdc-4df6-8bb5-344c16532d9b" + "51ab1a06-1d58-42de-a11c-e1252a07d422" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041107Z:f20bf902-ccdc-4df6-8bb5-344c16532d9b" + "WESTEUROPE:20150827T170610Z:51ab1a06-1d58-42de-a11c-e1252a07d422" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2944,14 +3280,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:06 GMT" + "Thu, 27 Aug 2015 17:06:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -2959,10 +3295,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2974,16 +3310,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14858" ], "x-ms-request-id": [ - "f757d75b-9783-4bf8-9fdd-c605f9a573f8" + "8156d3b1-0695-4eef-a425-8284c6cc676a" ], "x-ms-correlation-request-id": [ - "f757d75b-9783-4bf8-9fdd-c605f9a573f8" + "8156d3b1-0695-4eef-a425-8284c6cc676a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041110Z:f757d75b-9783-4bf8-9fdd-c605f9a573f8" + "WESTEUROPE:20150827T170614Z:8156d3b1-0695-4eef-a425-8284c6cc676a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2992,14 +3328,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:10 GMT" + "Thu, 27 Aug 2015 17:06:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -3007,10 +3343,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3022,16 +3358,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14856" ], "x-ms-request-id": [ - "e2a4faf5-4c82-43c9-a780-d45147ee0b52" + "48ae11fc-e3db-40ad-be73-31b82494319b" ], "x-ms-correlation-request-id": [ - "e2a4faf5-4c82-43c9-a780-d45147ee0b52" + "48ae11fc-e3db-40ad-be73-31b82494319b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041114Z:e2a4faf5-4c82-43c9-a780-d45147ee0b52" + "WESTEUROPE:20150827T170618Z:48ae11fc-e3db-40ad-be73-31b82494319b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3040,14 +3376,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:14 GMT" + "Thu, 27 Aug 2015 17:06:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -3055,10 +3391,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3070,16 +3406,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14854" ], "x-ms-request-id": [ - "85177f6d-6cc8-4f58-a562-8ba8a702ead5" + "d82d4228-6775-49e3-8bee-7422f0dc6f7b" ], "x-ms-correlation-request-id": [ - "85177f6d-6cc8-4f58-a562-8ba8a702ead5" + "d82d4228-6775-49e3-8bee-7422f0dc6f7b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041118Z:85177f6d-6cc8-4f58-a562-8ba8a702ead5" + "WESTEUROPE:20150827T170622Z:d82d4228-6775-49e3-8bee-7422f0dc6f7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3088,14 +3424,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:17 GMT" + "Thu, 27 Aug 2015 17:06:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -3103,10 +3439,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3118,16 +3454,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14852" ], "x-ms-request-id": [ - "7a053747-0fe8-41f1-ac63-81113f34d01f" + "5bd59bf6-0293-4225-98db-b9b199fad69f" ], "x-ms-correlation-request-id": [ - "7a053747-0fe8-41f1-ac63-81113f34d01f" + "5bd59bf6-0293-4225-98db-b9b199fad69f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041122Z:7a053747-0fe8-41f1-ac63-81113f34d01f" + "WESTEUROPE:20150827T170626Z:5bd59bf6-0293-4225-98db-b9b199fad69f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3136,14 +3472,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:21 GMT" + "Thu, 27 Aug 2015 17:06:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -3151,10 +3487,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3166,16 +3502,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14850" ], "x-ms-request-id": [ - "046435e4-0700-4c83-a1a1-256d0165a351" + "561f5a89-27ee-4b44-be41-d1ccd5fc4000" ], "x-ms-correlation-request-id": [ - "046435e4-0700-4c83-a1a1-256d0165a351" + "561f5a89-27ee-4b44-be41-d1ccd5fc4000" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041125Z:046435e4-0700-4c83-a1a1-256d0165a351" + "WESTEUROPE:20150827T170630Z:561f5a89-27ee-4b44-be41-d1ccd5fc4000" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3184,14 +3520,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:25 GMT" + "Thu, 27 Aug 2015 17:06:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -3199,10 +3535,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-13T04:09:39.8578199Z\",\r\n \"duration\": \"PT2.1728592S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2302" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3214,16 +3550,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14848" ], "x-ms-request-id": [ - "11bab4ca-b3e4-47c2-bf1a-5ef0797e5648" + "861438c9-8391-4d68-8ce0-e530139ba404" ], "x-ms-correlation-request-id": [ - "11bab4ca-b3e4-47c2-bf1a-5ef0797e5648" + "861438c9-8391-4d68-8ce0-e530139ba404" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041130Z:11bab4ca-b3e4-47c2-bf1a-5ef0797e5648" + "WESTEUROPE:20150827T170634Z:861438c9-8391-4d68-8ce0-e530139ba404" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3232,14 +3568,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:29 GMT" + "Thu, 27 Aug 2015 17:06:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/deployments/sql-ddm-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL2RlcGxveW1lbnRzL3NxbC1kZG0tdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": { @@ -3247,10 +3583,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-rg45262/deployments/sql-ddm-test-env-setup\",\r\n \"name\": \"sql-ddm-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testuser\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db45262\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"Australia East\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T04:11:32.9557271Z\",\r\n \"duration\": \"PT1M55.2707664S\",\r\n \"correlationId\": \"69adddf0-5969-4ac9-8421-3180d90e494d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/firewallrules/AllowAllWindowsAzureIps\",\r\n \"resourceType\": \"Microsoft.Sql/servers/firewallrules\",\r\n \"resourceName\": \"sql-dm-cmdlet-server45262/AllowAllWindowsAzureIps\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server45262\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-dm-cmdlet-server45262/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-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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2568" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3262,16 +3598,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14846" ], "x-ms-request-id": [ - "8987633f-f122-4ae2-be7e-fba2f6dbc028" + "d155bfd4-c05b-4729-bc4c-f68c332ac631" ], "x-ms-correlation-request-id": [ - "8987633f-f122-4ae2-be7e-fba2f6dbc028" + "d155bfd4-c05b-4729-bc4c-f68c332ac631" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041134Z:8987633f-f122-4ae2-be7e-fba2f6dbc028" + "WESTEUROPE:20150827T170637Z:d155bfd4-c05b-4729-bc4c-f68c332ac631" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3280,14 +3616,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:33 GMT" + "Thu, 27 Aug 2015 17:06:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Jlc291cmNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "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": { @@ -3295,10 +3631,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-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262\",\r\n \"name\": \"sql-dm-cmdlet-server45262\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262\",\r\n \"name\": \"sql-dm-cmdlet-server45262/sql-dm-cmdlet-db45262\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"australiaeast\"\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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "618" + "2318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3310,16 +3646,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14844" ], "x-ms-request-id": [ - "528ee847-6458-4653-a513-0dd9890340a2" + "9ab8c241-35c9-4860-b057-49b38c93516d" ], "x-ms-correlation-request-id": [ - "528ee847-6458-4653-a513-0dd9890340a2" + "9ab8c241-35c9-4860-b057-49b38c93516d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041136Z:528ee847-6458-4653-a513-0dd9890340a2" + "WESTEUROPE:20150827T170641Z:9ab8c241-35c9-4860-b057-49b38c93516d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3328,14 +3664,158 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:35 GMT" + "Thu, 27 Aug 2015 17:06:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE0LTA3LTAxLXByZXZpZXc=", + "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-08-27T17:04:30.2628978Z\",\r\n \"duration\": \"PT4.115769S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ + "14842" + ], + "x-ms-request-id": [ + "6252834a-8f1e-4cef-81c6-76edaa12c44f" + ], + "x-ms-correlation-request-id": [ + "6252834a-8f1e-4cef-81c6-76edaa12c44f" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T170645Z:6252834a-8f1e-4cef-81c6-76edaa12c44f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:06: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==", + "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\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T17:06:48.2727992Z\",\r\n \"duration\": \"PT2M22.1256704S\",\r\n \"correlationId\": \"efe290b3-105c-4203-982a-7d6d77bfac49\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ + "2589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14840" + ], + "x-ms-request-id": [ + "d32d6df0-d9b1-4aa1-add2-d216136ec6ad" + ], + "x-ms-correlation-request-id": [ + "d32d6df0-d9b1-4aa1-add2-d216136ec6ad" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T170649Z:d32d6df0-d9b1-4aa1-add2-d216136ec6ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:06:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg457822/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9yZXNvdXJjZXM/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/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server457822\",\r\n \"name\": \"sql-dm-cmdlet-server457822\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v12.0\",\r\n \"location\": \"australiaeast\"\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 \"name\": \"sql-dm-cmdlet-server457822/sql-dm-cmdlet-db457822\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v12.0,user\",\r\n \"location\": \"australiaeast\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "626" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14839" + ], + "x-ms-request-id": [ + "91d62f75-8de3-488c-8bbb-2e96c206a3f4" + ], + "x-ms-correlation-request-id": [ + "91d62f75-8de3-488c-8bbb-2e96c206a3f4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T170651Z:91d62f75-8de3-488c-8bbb-2e96c206a3f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:06:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg457822/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3361,16 +3841,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "southcentralus:c45d96f0-163c-472b-8daa-bd057a79aa60" + "westeurope:4e33a10b-1716-4c7d-b207-f5b5f0fc73a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14924" ], "x-ms-correlation-request-id": [ - "9ebfb7d0-a1b7-4809-9f37-9864c5facf6d" + "8c77f778-f730-4b63-a8c6-acce78b75fee" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041137Z:9ebfb7d0-a1b7-4809-9f37-9864c5facf6d" + "WESTEUROPE:20150827T170653Z:8c77f778-f730-4b63-a8c6-acce78b75fee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3379,14 +3859,14 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:37 GMT" + "Thu, 27 Aug 2015 17:06:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0NTI2Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQ1MjYyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "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": { @@ -3394,7 +3874,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "96fc68f5-1add-483e-ad8f-d1c100d8ed8e" + "935b24c7-ef9f-4eda-a9cf-acd95c98b60a" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3406,7 +3886,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5e9291df-2416-449b-a554-bef5835ffa86" + "72ddf961-7041-4738-89db-06f96564146a" ], "X-Content-Type-Options": [ "nosniff" @@ -3418,19 +3898,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14854" ], "x-ms-correlation-request-id": [ - "1fd8e615-9d42-446a-8a7d-47490e7fa4c0" + "a6a7672f-c68c-4c16-b68b-5781ba7b0f7c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041142Z:1fd8e615-9d42-446a-8a7d-47490e7fa4c0" + "WESTEUROPE:20150827T170700Z:a6a7672f-c68c-4c16-b68b-5781ba7b0f7c" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:42 GMT" + "Thu, 27 Aug 2015 17:06:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3439,8 +3919,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0NTI2Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQ1MjYyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "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": { @@ -3448,7 +3928,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "e2598056-1259-406c-a4ef-b858aa065d28" + "ea6ab0d0-eb34-4e1e-a3c3-9b0726f4a42f" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3460,7 +3940,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3b190e8f-f54e-4ee4-b481-47b02cace2bd" + "f7dcd4aa-8bde-41b7-919c-3bc504702c2b" ], "X-Content-Type-Options": [ "nosniff" @@ -3472,19 +3952,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14853" ], "x-ms-correlation-request-id": [ - "5cf4d153-556d-4d8b-9beb-91f731217f54" + "4eade3c5-466f-4afd-ad4d-b4bc3cc46e12" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041144Z:5cf4d153-556d-4d8b-9beb-91f731217f54" + "WESTEUROPE:20150827T170702Z:4eade3c5-466f-4afd-ad4d-b4bc3cc46e12" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:44 GMT" + "Thu, 27 Aug 2015 17:07:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3493,8 +3973,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0NTI2Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQ1MjYyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "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": { @@ -3502,19 +3982,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "12534205-3c3d-4a32-8412-0aa1a8b13a60" + "7372db08-c2d5-4f41-9aac-de7274f4495e" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/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-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}", "ResponseHeaders": { "Content-Length": [ - "606" + "609" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ec1b981d-c359-417f-9104-92a13ad61578" + "53192796-e918-4c4b-92d0-fc6e0052b00d" ], "X-Content-Type-Options": [ "nosniff" @@ -3526,19 +4006,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14851" ], "x-ms-correlation-request-id": [ - "474d491e-2058-42d5-9f94-7516a147b33d" + "cc44133c-1244-47eb-bee9-19a27fdf72b5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041150Z:474d491e-2058-42d5-9f94-7516a147b33d" + "WESTEUROPE:20150827T170711Z:cc44133c-1244-47eb-bee9-19a27fdf72b5" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:50 GMT" + "Thu, 27 Aug 2015 17:07:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3547,8 +4027,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0NTI2Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQ1MjYyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "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": { @@ -3556,19 +4036,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "03fb451e-5da2-40b1-a66d-e252c509fdd1" + "41d3d2ed-2291-4ef9-b504-2f6881aab19c" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/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-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}", "ResponseHeaders": { "Content-Length": [ - "606" + "609" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2d781cfb-348f-4987-bbf0-ded041465265" + "067ee332-22a3-4ab8-97eb-0af8915b24f0" ], "X-Content-Type-Options": [ "nosniff" @@ -3580,19 +4060,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14850" ], "x-ms-correlation-request-id": [ - "02777d92-32e7-47ff-a8d8-34ecfb819e59" + "e1636899-a18b-436d-a911-38d1f932b65b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041152Z:02777d92-32e7-47ff-a8d8-34ecfb819e59" + "WESTEUROPE:20150827T170712Z:e1636899-a18b-436d-a911-38d1f932b65b" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:51 GMT" + "Thu, 27 Aug 2015 17:07:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3601,8 +4081,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0NTI2Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQ1MjYyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "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": { @@ -3610,19 +4090,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "73034891-50f5-4df2-b4c7-f221ce8be42b" + "9a3d6213-e252-4ae0-8322-1d35c970824a" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/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-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}", "ResponseHeaders": { "Content-Length": [ - "606" + "609" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "25f2323e-8f1c-4dfc-a0a3-57142635bf94" + "75610719-214c-470f-b07e-c820be951983" ], "X-Content-Type-Options": [ "nosniff" @@ -3634,19 +4114,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14849" ], "x-ms-correlation-request-id": [ - "689f08f3-725a-416d-8c8d-b06f370ce106" + "829bc593-baf6-4ff2-a664-a0eb714c16d6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041153Z:689f08f3-725a-416d-8c8d-b06f370ce106" + "WESTEUROPE:20150827T170714Z:829bc593-baf6-4ff2-a664-a0eb714c16d6" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:53 GMT" + "Thu, 27 Aug 2015 17:07:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3655,8 +4135,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0NTI2Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQ1MjYyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "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": { @@ -3664,7 +4144,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "c1354f40-11e9-4440-b3e9-2f4243ab5e67" + "0e9d8d86-94e7-41fa-ae17-e7e29af228a1" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3676,7 +4156,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "865ececd-1c02-4bc1-b8fb-7f48f5dfcb7f" + "2c50d434-60f6-409c-a37b-0f5b1a2fb120" ], "X-Content-Type-Options": [ "nosniff" @@ -3688,19 +4168,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14848" ], "x-ms-correlation-request-id": [ - "66f718ff-a08d-4cda-8000-e3d62a2c76e9" + "9eeaded5-6483-47dc-ab89-e6dc19cf12b3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041156Z:66f718ff-a08d-4cda-8000-e3d62a2c76e9" + "WESTEUROPE:20150827T170718Z:9eeaded5-6483-47dc-ab89-e6dc19cf12b3" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:55 GMT" + "Thu, 27 Aug 2015 17:07:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3709,8 +4189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/dataMaskingPolicies/Default/Rules?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0NTI2Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQ1MjYyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "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": { @@ -3718,7 +4198,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ffb7ecc5-50ff-4081-9af8-88ea967c7b1a" + "9bc67936-5cb2-4843-9e71-d7431d31aa65" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3730,7 +4210,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "14a654c8-48d0-4c50-8222-fccdf7aedd4d" + "b098b531-1aef-4305-92a7-5e8193e3fdc2" ], "X-Content-Type-Options": [ "nosniff" @@ -3742,19 +4222,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14847" ], "x-ms-correlation-request-id": [ - "f05e2634-92f8-4fe1-8f24-cf1c37819aa2" + "1e7dd5ab-416c-487c-a047-9adf35d1d944" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041158Z:f05e2634-92f8-4fe1-8f24-cf1c37819aa2" + "WESTEUROPE:20150827T170720Z:1e7dd5ab-416c-487c-a047-9adf35d1d944" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:57 GMT" + "Thu, 27 Aug 2015 17:07:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3763,8 +4243,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/dataMaskingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0NTI2Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQ1MjYyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "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?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3772,19 +4252,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "e2598056-1259-406c-a4ef-b858aa065d28" + "ea6ab0d0-eb34-4e1e-a3c3-9b0726f4a42f" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/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-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}", "ResponseHeaders": { "Content-Length": [ - "456" + "455" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "0bdb2995-944d-453a-9952-5df7923bf2ec" + "130fc86a-0d31-456f-a12c-56764840c8cf" ], "X-Content-Type-Options": [ "nosniff" @@ -3796,19 +4276,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14852" ], "x-ms-correlation-request-id": [ - "ee4871df-ba64-4c16-b760-077feca5e626" + "2dbb4269-2fcc-49a5-8f9a-68d9cc8e419f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041145Z:ee4871df-ba64-4c16-b760-077feca5e626" + "WESTEUROPE:20150827T170703Z:2dbb4269-2fcc-49a5-8f9a-68d9cc8e419f" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:45 GMT" + "Thu, 27 Aug 2015 17:07:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3817,8 +4297,71 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/dataMaskingPolicies/Default/rules/rule1?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0NTI2Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQ1MjYyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "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?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1NzgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbC1kbS1jbWRsZXQtc2VydmVyNDU3ODIyL2RhdGFiYXNlcy9zcWwtZG0tY21kbGV0LWRiNDU3ODIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "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": [ + "ea6ab0d0-eb34-4e1e-a3c3-9b0726f4a42f" + ] + }, + "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}", + "ResponseHeaders": { + "Content-Length": [ + "444" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "493614c3-d2f9-46de-9d1c-8c0b88bc3baf" + ], + "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": [ + "41a64b75-2127-4040-a7ed-4eb132791511" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20150827T170706Z:41a64b75-2127-4040-a7ed-4eb132791511" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 27 Aug 2015 17:07:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "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", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"table1\",\r\n \"columnName\": \"column1\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}", "RequestHeaders": { @@ -3832,19 +4375,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "e2598056-1259-406c-a4ef-b858aa065d28" + "ea6ab0d0-eb34-4e1e-a3c3-9b0726f4a42f" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/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\": 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}", + "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\": 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}", "ResponseHeaders": { "Content-Length": [ - "590" + "593" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e509740d-ece6-4761-9e40-d50946c36aa2" + "85e2f49f-bdde-4582-89ae-8db958e1a266" ], "X-Content-Type-Options": [ "nosniff" @@ -3859,19 +4402,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "33f83765-40e6-4cbb-b228-9493520012a9" + "0085628a-11a3-4311-80f4-4a8af3be7570" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041149Z:33f83765-40e6-4cbb-b228-9493520012a9" + "WESTEUROPE:20150827T170709Z:0085628a-11a3-4311-80f4-4a8af3be7570" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:48 GMT" + "Thu, 27 Aug 2015 17:07:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3880,8 +4423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg45262/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server45262/databases/sql-dm-cmdlet-db45262/dataMaskingPolicies/Default/rules/rule1?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQ1MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI0NTI2Mi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjQ1MjYyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMT9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "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", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -3889,7 +4432,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "73034891-50f5-4df2-b4c7-f221ce8be42b" + "9a3d6213-e252-4ae0-8322-1d35c970824a" ] }, "ResponseBody": "", @@ -3901,7 +4444,7 @@ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "dedbc474-f3d0-4a09-b196-1687189f71ac" + "6eafb581-a286-4b69-9753-2b394f7eb98e" ], "X-Content-Type-Options": [ "nosniff" @@ -3913,19 +4456,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-correlation-request-id": [ - "2250f5ad-9f25-4d14-a19a-726c2f70cc6c" + "7caad51a-ec62-4b23-bd81-f7dbde3e2428" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T041155Z:2250f5ad-9f25-4d14-a19a-726c2f70cc6c" + "WESTEUROPE:20150827T170717Z:7caad51a-ec62-4b23-bd81-f7dbde3e2428" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 04:11:54 GMT" + "Thu, 27 Aug 2015 17:07:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3936,6 +4479,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "cca24ec8-99b5-4aa7-9ff6-486e886f304c" + "SubscriptionId": "cca24ec8-99b5-4aa7-9ff6-486e886f304c", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Domain": "microsoft.com", + "User": "yrubin@microsoft.com" } } \ No newline at end of file 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 81f16da5bb5d..fc3ab8cdf82d 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": [ - "14998" + "14587" ], "x-ms-request-id": [ - "e5ba8b66-be24-46f4-8791-73748fa56928" + "d36a01e2-1061-4156-8672-12b53b4c7b0d" ], "x-ms-correlation-request-id": [ - "e5ba8b66-be24-46f4-8791-73748fa56928" + "d36a01e2-1061-4156-8672-12b53b4c7b0d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035702Z:e5ba8b66-be24-46f4-8791-73748fa56928" + "WESTEUROPE:20150827T110555Z:d36a01e2-1061-4156-8672-12b53b4c7b0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:02 GMT" + "Thu, 27 Aug 2015 11:05:54 GMT" ] }, "StatusCode": 404 @@ -85,13 +85,13 @@ "1199" ], "x-ms-request-id": [ - "3dc03fa6-4a9a-46aa-a219-f5b4cb85ec07" + "e4258b20-21b1-4898-8321-3518087fe0ae" ], "x-ms-correlation-request-id": [ - "3dc03fa6-4a9a-46aa-a219-f5b4cb85ec07" + "e4258b20-21b1-4898-8321-3518087fe0ae" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035706Z:3dc03fa6-4a9a-46aa-a219-f5b4cb85ec07" + "WESTEUROPE:20150827T110559Z:e4258b20-21b1-4898-8321-3518087fe0ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:05 GMT" + "Thu, 27 Aug 2015 11:05:59 GMT" ] }, "StatusCode": 201 @@ -121,10 +121,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-08-13T03:57:07.1999416Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"4321c944-2ecf-453a-937b-a7e0a5d7dbc6\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:01.120515Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"fedce141-3778-4fd8-aff2-c1f8eb0b5e27\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2295" + "2294" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,13 +139,13 @@ "1198" ], "x-ms-request-id": [ - "4321c944-2ecf-453a-937b-a7e0a5d7dbc6" + "fedce141-3778-4fd8-aff2-c1f8eb0b5e27" ], "x-ms-correlation-request-id": [ - "4321c944-2ecf-453a-937b-a7e0a5d7dbc6" + "fedce141-3778-4fd8-aff2-c1f8eb0b5e27" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035707Z:4321c944-2ecf-453a-937b-a7e0a5d7dbc6" + "WESTEUROPE:20150827T110601Z:fedce141-3778-4fd8-aff2-c1f8eb0b5e27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:06 GMT" + "Thu, 27 Aug 2015 11:06:00 GMT" ] }, "StatusCode": 200 @@ -175,10 +175,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-08-13T03:57:10.3211697Z\",\r\n \"duration\": \"PT1.9558401S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:05.532077Z\",\r\n \"duration\": \"PT3.1831044S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -193,13 +193,13 @@ "1197" ], "x-ms-request-id": [ - "29fac65c-163b-4ffa-99de-5a8820e9beef" + "7178cbdd-ede4-4101-bf29-2c6910cc04c4" ], "x-ms-correlation-request-id": [ - "29fac65c-163b-4ffa-99de-5a8820e9beef" + "7178cbdd-ede4-4101-bf29-2c6910cc04c4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035711Z:29fac65c-163b-4ffa-99de-5a8820e9beef" + "WESTEUROPE:20150827T110606Z:7178cbdd-ede4-4101-bf29-2c6910cc04c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,7 +208,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:10 GMT" + "Thu, 27 Aug 2015 11:06:06 GMT" ] }, "StatusCode": 201 @@ -238,16 +238,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14585" ], "x-ms-request-id": [ - "0d5dfa2d-4373-442f-88f4-9daa95c380c3" + "4cf73351-1f6a-4328-be1e-d9935ac5be43" ], "x-ms-correlation-request-id": [ - "0d5dfa2d-4373-442f-88f4-9daa95c380c3" + "4cf73351-1f6a-4328-be1e-d9935ac5be43" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035712Z:0d5dfa2d-4373-442f-88f4-9daa95c380c3" + "WESTEUROPE:20150827T110608Z:4cf73351-1f6a-4328-be1e-d9935ac5be43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,7 +256,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:11 GMT" + "Thu, 27 Aug 2015 11:06:07 GMT" ] }, "StatusCode": 200 @@ -286,16 +286,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14583" ], "x-ms-request-id": [ - "f00b6d87-1344-4f70-9626-7bf1477ba0ce" + "35cf914e-bf89-4e00-8529-e06c31ac170d" ], "x-ms-correlation-request-id": [ - "f00b6d87-1344-4f70-9626-7bf1477ba0ce" + "35cf914e-bf89-4e00-8529-e06c31ac170d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035715Z:f00b6d87-1344-4f70-9626-7bf1477ba0ce" + "WESTEUROPE:20150827T110611Z:35cf914e-bf89-4e00-8529-e06c31ac170d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,7 +304,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:14 GMT" + "Thu, 27 Aug 2015 11:06:11 GMT" ] }, "StatusCode": 200 @@ -334,16 +334,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14581" ], "x-ms-request-id": [ - "83dda3b3-2408-47c6-8de0-6167ec00cbc1" + "e86677de-559c-421b-926a-1703d3a3982a" ], "x-ms-correlation-request-id": [ - "83dda3b3-2408-47c6-8de0-6167ec00cbc1" + "e86677de-559c-421b-926a-1703d3a3982a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035718Z:83dda3b3-2408-47c6-8de0-6167ec00cbc1" + "WESTEUROPE:20150827T110615Z:e86677de-559c-421b-926a-1703d3a3982a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,7 +352,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:18 GMT" + "Thu, 27 Aug 2015 11:06:14 GMT" ] }, "StatusCode": 200 @@ -382,16 +382,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14579" ], "x-ms-request-id": [ - "1c2ac03f-3a8f-40ca-a971-73d4d0e9ee43" + "4a4e312d-7d5c-4297-9515-d437c8e5647c" ], "x-ms-correlation-request-id": [ - "1c2ac03f-3a8f-40ca-a971-73d4d0e9ee43" + "4a4e312d-7d5c-4297-9515-d437c8e5647c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035722Z:1c2ac03f-3a8f-40ca-a971-73d4d0e9ee43" + "WESTEUROPE:20150827T110619Z:4a4e312d-7d5c-4297-9515-d437c8e5647c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,7 +400,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:21 GMT" + "Thu, 27 Aug 2015 11:06:18 GMT" ] }, "StatusCode": 200 @@ -430,16 +430,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14577" ], "x-ms-request-id": [ - "079943c6-469a-464f-9022-931f08b729b3" + "6bece516-4071-4ea6-aba7-535727534f95" ], "x-ms-correlation-request-id": [ - "079943c6-469a-464f-9022-931f08b729b3" + "6bece516-4071-4ea6-aba7-535727534f95" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035725Z:079943c6-469a-464f-9022-931f08b729b3" + "WESTEUROPE:20150827T110623Z:6bece516-4071-4ea6-aba7-535727534f95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -448,7 +448,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:25 GMT" + "Thu, 27 Aug 2015 11:06:22 GMT" ] }, "StatusCode": 200 @@ -478,16 +478,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14575" ], "x-ms-request-id": [ - "1fabf0c1-04ce-45fd-ad74-855509cca0f1" + "3b732486-6213-48fa-8009-de05d30f7acf" ], "x-ms-correlation-request-id": [ - "1fabf0c1-04ce-45fd-ad74-855509cca0f1" + "3b732486-6213-48fa-8009-de05d30f7acf" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035729Z:1fabf0c1-04ce-45fd-ad74-855509cca0f1" + "WESTEUROPE:20150827T110626Z:3b732486-6213-48fa-8009-de05d30f7acf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,7 +496,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:28 GMT" + "Thu, 27 Aug 2015 11:06:25 GMT" ] }, "StatusCode": 200 @@ -526,16 +526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14571" ], "x-ms-request-id": [ - "94471ed6-28b9-4d06-93ff-f0c2cc9ad638" + "2745208b-3217-4876-91dc-609c3a1db1a7" ], "x-ms-correlation-request-id": [ - "94471ed6-28b9-4d06-93ff-f0c2cc9ad638" + "2745208b-3217-4876-91dc-609c3a1db1a7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035732Z:94471ed6-28b9-4d06-93ff-f0c2cc9ad638" + "WESTEUROPE:20150827T110630Z:2745208b-3217-4876-91dc-609c3a1db1a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -544,7 +544,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:32 GMT" + "Thu, 27 Aug 2015 11:06:29 GMT" ] }, "StatusCode": 200 @@ -574,16 +574,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14569" ], "x-ms-request-id": [ - "5703a3f5-3291-490c-89fb-8b4c57a66548" + "06f9829e-1849-449f-ac54-6dd9edc4c9a5" ], "x-ms-correlation-request-id": [ - "5703a3f5-3291-490c-89fb-8b4c57a66548" + "06f9829e-1849-449f-ac54-6dd9edc4c9a5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035736Z:5703a3f5-3291-490c-89fb-8b4c57a66548" + "WESTEUROPE:20150827T110634Z:06f9829e-1849-449f-ac54-6dd9edc4c9a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592,7 +592,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:36 GMT" + "Thu, 27 Aug 2015 11:06:34 GMT" ] }, "StatusCode": 200 @@ -622,16 +622,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14567" ], "x-ms-request-id": [ - "a501af40-97a7-4f89-9693-3926ef3e9334" + "60d9702f-f854-4221-8de1-b9c9341254fb" ], "x-ms-correlation-request-id": [ - "a501af40-97a7-4f89-9693-3926ef3e9334" + "60d9702f-f854-4221-8de1-b9c9341254fb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035739Z:a501af40-97a7-4f89-9693-3926ef3e9334" + "WESTEUROPE:20150827T110637Z:60d9702f-f854-4221-8de1-b9c9341254fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,7 +640,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:39 GMT" + "Thu, 27 Aug 2015 11:06:37 GMT" ] }, "StatusCode": 200 @@ -670,16 +670,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14565" ], "x-ms-request-id": [ - "27cd1445-e261-4899-af75-7e4df451e347" + "8768b839-2e45-4cbb-a377-9709b93d5c72" ], "x-ms-correlation-request-id": [ - "27cd1445-e261-4899-af75-7e4df451e347" + "8768b839-2e45-4cbb-a377-9709b93d5c72" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035743Z:27cd1445-e261-4899-af75-7e4df451e347" + "WESTEUROPE:20150827T110641Z:8768b839-2e45-4cbb-a377-9709b93d5c72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -688,7 +688,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:42 GMT" + "Thu, 27 Aug 2015 11:06:41 GMT" ] }, "StatusCode": 200 @@ -718,16 +718,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14563" ], "x-ms-request-id": [ - "7c23194d-f874-47dd-9c94-dfa2022f9106" + "d2585709-a7b9-40ef-9324-000cfd2aa7da" ], "x-ms-correlation-request-id": [ - "7c23194d-f874-47dd-9c94-dfa2022f9106" + "d2585709-a7b9-40ef-9324-000cfd2aa7da" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035746Z:7c23194d-f874-47dd-9c94-dfa2022f9106" + "WESTEUROPE:20150827T110645Z:d2585709-a7b9-40ef-9324-000cfd2aa7da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:46 GMT" + "Thu, 27 Aug 2015 11:06:45 GMT" ] }, "StatusCode": 200 @@ -766,16 +766,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14561" ], "x-ms-request-id": [ - "b49f7c64-6e52-4a43-88aa-db6f8e499ff7" + "acd95a2e-0c10-4279-b195-8db8e36976a1" ], "x-ms-correlation-request-id": [ - "b49f7c64-6e52-4a43-88aa-db6f8e499ff7" + "acd95a2e-0c10-4279-b195-8db8e36976a1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035750Z:b49f7c64-6e52-4a43-88aa-db6f8e499ff7" + "WESTEUROPE:20150827T110649Z:acd95a2e-0c10-4279-b195-8db8e36976a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -784,7 +784,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:49 GMT" + "Thu, 27 Aug 2015 11:06:48 GMT" ] }, "StatusCode": 200 @@ -814,16 +814,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14559" ], "x-ms-request-id": [ - "26ece4e3-84a2-458f-8059-a1acefbf8c60" + "e64f4d4d-1884-400c-9c4d-2b6d94a4aabb" ], "x-ms-correlation-request-id": [ - "26ece4e3-84a2-458f-8059-a1acefbf8c60" + "e64f4d4d-1884-400c-9c4d-2b6d94a4aabb" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035753Z:26ece4e3-84a2-458f-8059-a1acefbf8c60" + "WESTEUROPE:20150827T110653Z:e64f4d4d-1884-400c-9c4d-2b6d94a4aabb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -832,7 +832,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:53 GMT" + "Thu, 27 Aug 2015 11:06:52 GMT" ] }, "StatusCode": 200 @@ -847,10 +847,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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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}", "ResponseHeaders": { "Content-Length": [ - "661" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -862,16 +862,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14557" ], "x-ms-request-id": [ - "d84a4481-ec70-4312-9cbb-d0cb4e8b261b" + "3b5f2746-1d2d-4f80-b0b8-5d0362c925a7" ], "x-ms-correlation-request-id": [ - "d84a4481-ec70-4312-9cbb-d0cb4e8b261b" + "3b5f2746-1d2d-4f80-b0b8-5d0362c925a7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035757Z:d84a4481-ec70-4312-9cbb-d0cb4e8b261b" + "WESTEUROPE:20150827T110656Z:3b5f2746-1d2d-4f80-b0b8-5d0362c925a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -880,7 +880,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:56 GMT" + "Thu, 27 Aug 2015 11:06:56 GMT" ] }, "StatusCode": 200 @@ -895,10 +895,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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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}", "ResponseHeaders": { "Content-Length": [ - "1387" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -910,16 +910,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14555" ], "x-ms-request-id": [ - "18b1f6e7-3346-43f6-8817-8f717d96b7a6" + "fb578c6a-2a22-44cb-b8d3-8d86cd03de14" ], "x-ms-correlation-request-id": [ - "18b1f6e7-3346-43f6-8817-8f717d96b7a6" + "fb578c6a-2a22-44cb-b8d3-8d86cd03de14" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035800Z:18b1f6e7-3346-43f6-8817-8f717d96b7a6" + "WESTEUROPE:20150827T110700Z:fb578c6a-2a22-44cb-b8d3-8d86cd03de14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -928,7 +928,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:00 GMT" + "Thu, 27 Aug 2015 11:07:00 GMT" ] }, "StatusCode": 200 @@ -943,10 +943,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-08-13T03:58:00.3542Z\",\r\n \"duration\": \"PT5.2817936S\",\r\n \"trackingId\": \"2b2f0b1b-a2a1-49c7-8a29-14074aa45593\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2097" + "662" ], "Content-Type": [ "application/json; charset=utf-8" @@ -958,16 +958,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14553" ], "x-ms-request-id": [ - "11715de2-4260-4f0c-a785-7a84cef2d34c" + "8f0fb207-43bb-4475-8b82-03002abc0f63" ], "x-ms-correlation-request-id": [ - "11715de2-4260-4f0c-a785-7a84cef2d34c" + "8f0fb207-43bb-4475-8b82-03002abc0f63" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035804Z:11715de2-4260-4f0c-a785-7a84cef2d34c" + "WESTEUROPE:20150827T110704Z:8f0fb207-43bb-4475-8b82-03002abc0f63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -976,7 +976,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:03 GMT" + "Thu, 27 Aug 2015 11:07:03 GMT" ] }, "StatusCode": 200 @@ -991,10 +991,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-08-13T03:58:00.3542Z\",\r\n \"duration\": \"PT5.2817936S\",\r\n \"trackingId\": \"2b2f0b1b-a2a1-49c7-8a29-14074aa45593\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2097" + "1388" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1006,16 +1006,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14551" ], "x-ms-request-id": [ - "77ae3efb-c11a-4e6f-99f9-60824d0cccef" + "78d556a4-1d12-45ae-b0db-405d5e66664d" ], "x-ms-correlation-request-id": [ - "77ae3efb-c11a-4e6f-99f9-60824d0cccef" + "78d556a4-1d12-45ae-b0db-405d5e66664d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035807Z:77ae3efb-c11a-4e6f-99f9-60824d0cccef" + "WESTEUROPE:20150827T110708Z:78d556a4-1d12-45ae-b0db-405d5e66664d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1024,7 +1024,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:07 GMT" + "Thu, 27 Aug 2015 11:07:07 GMT" ] }, "StatusCode": 200 @@ -1039,10 +1039,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-08-13T03:58:00.3542Z\",\r\n \"duration\": \"PT5.2817936S\",\r\n \"trackingId\": \"2b2f0b1b-a2a1-49c7-8a29-14074aa45593\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:10.8651471Z\",\r\n \"duration\": \"PT9.3309263S\",\r\n \"trackingId\": \"66fc7d08-0d0b-4125-8e47-81acd6930179\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2097" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1054,16 +1054,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14547" ], "x-ms-request-id": [ - "a868cc83-9990-43e5-aa01-e810a58c042a" + "2f8cd9b8-cb85-44b3-a673-f37393fcfb67" ], "x-ms-correlation-request-id": [ - "a868cc83-9990-43e5-aa01-e810a58c042a" + "2f8cd9b8-cb85-44b3-a673-f37393fcfb67" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035811Z:a868cc83-9990-43e5-aa01-e810a58c042a" + "WESTEUROPE:20150827T110712Z:2f8cd9b8-cb85-44b3-a673-f37393fcfb67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1072,7 +1072,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:10 GMT" + "Thu, 27 Aug 2015 11:07:11 GMT" ] }, "StatusCode": 200 @@ -1087,10 +1087,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-08-13T03:58:00.3542Z\",\r\n \"duration\": \"PT5.2817936S\",\r\n \"trackingId\": \"2b2f0b1b-a2a1-49c7-8a29-14074aa45593\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:10.8651471Z\",\r\n \"duration\": \"PT9.3309263S\",\r\n \"trackingId\": \"66fc7d08-0d0b-4125-8e47-81acd6930179\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2097" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1102,16 +1102,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14544" ], "x-ms-request-id": [ - "e2a302f9-4cff-4851-b0b3-2b823ba04a0a" + "5c011f63-1ce9-40c1-8c18-32f2b6b60a5d" ], "x-ms-correlation-request-id": [ - "e2a302f9-4cff-4851-b0b3-2b823ba04a0a" + "5c011f63-1ce9-40c1-8c18-32f2b6b60a5d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035815Z:e2a302f9-4cff-4851-b0b3-2b823ba04a0a" + "WESTEUROPE:20150827T110716Z:5c011f63-1ce9-40c1-8c18-32f2b6b60a5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1120,7 +1120,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:14 GMT" + "Thu, 27 Aug 2015 11:07:15 GMT" ] }, "StatusCode": 200 @@ -1135,10 +1135,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-08-13T03:58:00.3542Z\",\r\n \"duration\": \"PT5.2817936S\",\r\n \"trackingId\": \"2b2f0b1b-a2a1-49c7-8a29-14074aa45593\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:10.8651471Z\",\r\n \"duration\": \"PT9.3309263S\",\r\n \"trackingId\": \"66fc7d08-0d0b-4125-8e47-81acd6930179\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2097" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1150,16 +1150,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14542" ], "x-ms-request-id": [ - "dcf77f1a-9030-475a-aee2-449040bb5431" + "7acb2b59-d35c-45d8-92be-0d3845c19144" ], "x-ms-correlation-request-id": [ - "dcf77f1a-9030-475a-aee2-449040bb5431" + "7acb2b59-d35c-45d8-92be-0d3845c19144" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035818Z:dcf77f1a-9030-475a-aee2-449040bb5431" + "WESTEUROPE:20150827T110720Z:7acb2b59-d35c-45d8-92be-0d3845c19144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1168,7 +1168,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:18 GMT" + "Thu, 27 Aug 2015 11:07:19 GMT" ] }, "StatusCode": 200 @@ -1183,10 +1183,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-08-13T03:58:00.3542Z\",\r\n \"duration\": \"PT5.2817936S\",\r\n \"trackingId\": \"2b2f0b1b-a2a1-49c7-8a29-14074aa45593\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:10.8651471Z\",\r\n \"duration\": \"PT9.3309263S\",\r\n \"trackingId\": \"66fc7d08-0d0b-4125-8e47-81acd6930179\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2097" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1198,16 +1198,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14539" ], "x-ms-request-id": [ - "89ad3a12-7136-4496-99fc-c011f3d712bf" + "b91d3dcb-4199-4c76-b489-57a7e9072afa" ], "x-ms-correlation-request-id": [ - "89ad3a12-7136-4496-99fc-c011f3d712bf" + "b91d3dcb-4199-4c76-b489-57a7e9072afa" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035822Z:89ad3a12-7136-4496-99fc-c011f3d712bf" + "WESTEUROPE:20150827T110724Z:b91d3dcb-4199-4c76-b489-57a7e9072afa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1216,7 +1216,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:21 GMT" + "Thu, 27 Aug 2015 11:07:23 GMT" ] }, "StatusCode": 200 @@ -1231,10 +1231,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-08-13T03:58:00.3542Z\",\r\n \"duration\": \"PT5.2817936S\",\r\n \"trackingId\": \"2b2f0b1b-a2a1-49c7-8a29-14074aa45593\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:10.8651471Z\",\r\n \"duration\": \"PT9.3309263S\",\r\n \"trackingId\": \"66fc7d08-0d0b-4125-8e47-81acd6930179\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2097" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1246,16 +1246,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14536" ], "x-ms-request-id": [ - "ad23a587-7804-40ca-b651-adbbd20e3c25" + "9b507e13-5ea4-4789-8c86-30ff9cead0f1" ], "x-ms-correlation-request-id": [ - "ad23a587-7804-40ca-b651-adbbd20e3c25" + "9b507e13-5ea4-4789-8c86-30ff9cead0f1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035826Z:ad23a587-7804-40ca-b651-adbbd20e3c25" + "WESTEUROPE:20150827T110728Z:9b507e13-5ea4-4789-8c86-30ff9cead0f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1264,7 +1264,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:26 GMT" + "Thu, 27 Aug 2015 11:07:28 GMT" ] }, "StatusCode": 200 @@ -1279,10 +1279,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-08-13T03:58:00.3542Z\",\r\n \"duration\": \"PT5.2817936S\",\r\n \"trackingId\": \"2b2f0b1b-a2a1-49c7-8a29-14074aa45593\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:10.8651471Z\",\r\n \"duration\": \"PT9.3309263S\",\r\n \"trackingId\": \"66fc7d08-0d0b-4125-8e47-81acd6930179\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2097" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1294,16 +1294,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14531" ], "x-ms-request-id": [ - "755d847d-47af-4df2-96e4-104fa06e907b" + "da894f4d-4f96-4560-b2c2-2707ed198420" ], "x-ms-correlation-request-id": [ - "755d847d-47af-4df2-96e4-104fa06e907b" + "da894f4d-4f96-4560-b2c2-2707ed198420" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035829Z:755d847d-47af-4df2-96e4-104fa06e907b" + "WESTEUROPE:20150827T110732Z:da894f4d-4f96-4560-b2c2-2707ed198420" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1312,7 +1312,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:29 GMT" + "Thu, 27 Aug 2015 11:07:32 GMT" ] }, "StatusCode": 200 @@ -1327,10 +1327,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-08-13T03:58:32.696043Z\",\r\n \"duration\": \"PT37.6236366S\",\r\n \"trackingId\": \"3377b2a2-70be-410f-858d-fb6696dcee29\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:10.8651471Z\",\r\n \"duration\": \"PT9.3309263S\",\r\n \"trackingId\": \"66fc7d08-0d0b-4125-8e47-81acd6930179\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1342,16 +1342,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14528" ], "x-ms-request-id": [ - "84b91d13-9ec8-407f-b62b-5b90e9cdd963" + "907fdfc8-b3d0-4efd-9b5d-060a33941959" ], "x-ms-correlation-request-id": [ - "84b91d13-9ec8-407f-b62b-5b90e9cdd963" + "907fdfc8-b3d0-4efd-9b5d-060a33941959" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035833Z:84b91d13-9ec8-407f-b62b-5b90e9cdd963" + "WESTEUROPE:20150827T110736Z:907fdfc8-b3d0-4efd-9b5d-060a33941959" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1360,7 +1360,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:33 GMT" + "Thu, 27 Aug 2015 11:07:36 GMT" ] }, "StatusCode": 200 @@ -1375,10 +1375,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-08-13T03:58:32.696043Z\",\r\n \"duration\": \"PT37.6236366S\",\r\n \"trackingId\": \"3377b2a2-70be-410f-858d-fb6696dcee29\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:10.8651471Z\",\r\n \"duration\": \"PT9.3309263S\",\r\n \"trackingId\": \"66fc7d08-0d0b-4125-8e47-81acd6930179\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1390,16 +1390,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14526" ], "x-ms-request-id": [ - "abdb7c55-9c1f-453b-b513-0dba01fa6c2a" + "f9475a27-0384-43db-97c3-115b54b0db1c" ], "x-ms-correlation-request-id": [ - "abdb7c55-9c1f-453b-b513-0dba01fa6c2a" + "f9475a27-0384-43db-97c3-115b54b0db1c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035837Z:abdb7c55-9c1f-453b-b513-0dba01fa6c2a" + "WESTEUROPE:20150827T110740Z:f9475a27-0384-43db-97c3-115b54b0db1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1408,7 +1408,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:37 GMT" + "Thu, 27 Aug 2015 11:07:40 GMT" ] }, "StatusCode": 200 @@ -1423,10 +1423,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-08-13T03:58:32.696043Z\",\r\n \"duration\": \"PT37.6236366S\",\r\n \"trackingId\": \"3377b2a2-70be-410f-858d-fb6696dcee29\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:43.7226319Z\",\r\n \"duration\": \"PT42.1884111S\",\r\n \"trackingId\": \"382998b6-e3c5-4bc5-812e-54f6688a8f1d\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1438,16 +1438,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14524" ], "x-ms-request-id": [ - "f51982f3-f44e-4b19-adf9-8db58ad4f4df" + "ccb1d608-06bf-43c6-b4ae-5d2bddb822e6" ], "x-ms-correlation-request-id": [ - "f51982f3-f44e-4b19-adf9-8db58ad4f4df" + "ccb1d608-06bf-43c6-b4ae-5d2bddb822e6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035840Z:f51982f3-f44e-4b19-adf9-8db58ad4f4df" + "WESTEUROPE:20150827T110744Z:ccb1d608-06bf-43c6-b4ae-5d2bddb822e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1456,7 +1456,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:40 GMT" + "Thu, 27 Aug 2015 11:07:44 GMT" ] }, "StatusCode": 200 @@ -1471,10 +1471,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-08-13T03:58:32.696043Z\",\r\n \"duration\": \"PT37.6236366S\",\r\n \"trackingId\": \"3377b2a2-70be-410f-858d-fb6696dcee29\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:43.7226319Z\",\r\n \"duration\": \"PT42.1884111S\",\r\n \"trackingId\": \"382998b6-e3c5-4bc5-812e-54f6688a8f1d\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1486,16 +1486,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14522" ], "x-ms-request-id": [ - "f86f574b-56fb-4e09-a762-c2e287ac8a48" + "82d2472d-7830-47ab-bf0d-214679856bb2" ], "x-ms-correlation-request-id": [ - "f86f574b-56fb-4e09-a762-c2e287ac8a48" + "82d2472d-7830-47ab-bf0d-214679856bb2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035844Z:f86f574b-56fb-4e09-a762-c2e287ac8a48" + "WESTEUROPE:20150827T110748Z:82d2472d-7830-47ab-bf0d-214679856bb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1504,7 +1504,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:44 GMT" + "Thu, 27 Aug 2015 11:07:47 GMT" ] }, "StatusCode": 200 @@ -1519,10 +1519,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-08-13T03:58:32.696043Z\",\r\n \"duration\": \"PT37.6236366S\",\r\n \"trackingId\": \"3377b2a2-70be-410f-858d-fb6696dcee29\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:43.7226319Z\",\r\n \"duration\": \"PT42.1884111S\",\r\n \"trackingId\": \"382998b6-e3c5-4bc5-812e-54f6688a8f1d\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1534,16 +1534,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14520" ], "x-ms-request-id": [ - "36313f18-5ce2-4a1f-ab46-75c22fa46632" + "9bbd8148-8c04-4bfa-ae89-9c2ffb8d3ffa" ], "x-ms-correlation-request-id": [ - "36313f18-5ce2-4a1f-ab46-75c22fa46632" + "9bbd8148-8c04-4bfa-ae89-9c2ffb8d3ffa" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035848Z:36313f18-5ce2-4a1f-ab46-75c22fa46632" + "WESTEUROPE:20150827T110752Z:9bbd8148-8c04-4bfa-ae89-9c2ffb8d3ffa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1552,7 +1552,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:47 GMT" + "Thu, 27 Aug 2015 11:07:51 GMT" ] }, "StatusCode": 200 @@ -1567,10 +1567,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-08-13T03:58:32.696043Z\",\r\n \"duration\": \"PT37.6236366S\",\r\n \"trackingId\": \"3377b2a2-70be-410f-858d-fb6696dcee29\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:43.7226319Z\",\r\n \"duration\": \"PT42.1884111S\",\r\n \"trackingId\": \"382998b6-e3c5-4bc5-812e-54f6688a8f1d\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1582,16 +1582,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14518" ], "x-ms-request-id": [ - "27346b9f-08ab-4e0c-9bfa-1d98b5d7af65" + "80e7f518-88d5-47a7-9868-610f69507c1f" ], "x-ms-correlation-request-id": [ - "27346b9f-08ab-4e0c-9bfa-1d98b5d7af65" + "80e7f518-88d5-47a7-9868-610f69507c1f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035851Z:27346b9f-08ab-4e0c-9bfa-1d98b5d7af65" + "WESTEUROPE:20150827T110756Z:80e7f518-88d5-47a7-9868-610f69507c1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1600,7 +1600,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:51 GMT" + "Thu, 27 Aug 2015 11:07:55 GMT" ] }, "StatusCode": 200 @@ -1615,10 +1615,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-08-13T03:58:32.696043Z\",\r\n \"duration\": \"PT37.6236366S\",\r\n \"trackingId\": \"3377b2a2-70be-410f-858d-fb6696dcee29\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:43.7226319Z\",\r\n \"duration\": \"PT42.1884111S\",\r\n \"trackingId\": \"382998b6-e3c5-4bc5-812e-54f6688a8f1d\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1630,16 +1630,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14516" ], "x-ms-request-id": [ - "cf23f760-637a-4381-9781-9f88e43c8b63" + "6816403d-68a0-4247-a188-3bd3348e2c2e" ], "x-ms-correlation-request-id": [ - "cf23f760-637a-4381-9781-9f88e43c8b63" + "6816403d-68a0-4247-a188-3bd3348e2c2e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035855Z:cf23f760-637a-4381-9781-9f88e43c8b63" + "WESTEUROPE:20150827T110800Z:6816403d-68a0-4247-a188-3bd3348e2c2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1648,7 +1648,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:54 GMT" + "Thu, 27 Aug 2015 11:07:59 GMT" ] }, "StatusCode": 200 @@ -1663,10 +1663,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-08-13T03:58:32.696043Z\",\r\n \"duration\": \"PT37.6236366S\",\r\n \"trackingId\": \"3377b2a2-70be-410f-858d-fb6696dcee29\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:43.7226319Z\",\r\n \"duration\": \"PT42.1884111S\",\r\n \"trackingId\": \"382998b6-e3c5-4bc5-812e-54f6688a8f1d\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1678,16 +1678,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14514" ], "x-ms-request-id": [ - "2bc4fb00-ce00-4908-a3ee-d8a0b47d3069" + "ebba9c02-0a1b-4ecd-9bdd-d5fb46ca006a" ], "x-ms-correlation-request-id": [ - "2bc4fb00-ce00-4908-a3ee-d8a0b47d3069" + "ebba9c02-0a1b-4ecd-9bdd-d5fb46ca006a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035859Z:2bc4fb00-ce00-4908-a3ee-d8a0b47d3069" + "WESTEUROPE:20150827T110804Z:ebba9c02-0a1b-4ecd-9bdd-d5fb46ca006a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1696,7 +1696,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:58 GMT" + "Thu, 27 Aug 2015 11:08:03 GMT" ] }, "StatusCode": 200 @@ -1711,10 +1711,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-08-13T03:58:32.696043Z\",\r\n \"duration\": \"PT37.6236366S\",\r\n \"trackingId\": \"3377b2a2-70be-410f-858d-fb6696dcee29\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:43.7226319Z\",\r\n \"duration\": \"PT42.1884111S\",\r\n \"trackingId\": \"382998b6-e3c5-4bc5-812e-54f6688a8f1d\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2100" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1726,16 +1726,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14512" ], "x-ms-request-id": [ - "ce17fcd7-e3a5-4932-91fc-8a66b5ec58ac" + "eee3eb0b-e10c-4aa5-ac54-3d9dcf3693b0" ], "x-ms-correlation-request-id": [ - "ce17fcd7-e3a5-4932-91fc-8a66b5ec58ac" + "eee3eb0b-e10c-4aa5-ac54-3d9dcf3693b0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035902Z:ce17fcd7-e3a5-4932-91fc-8a66b5ec58ac" + "WESTEUROPE:20150827T110808Z:eee3eb0b-e10c-4aa5-ac54-3d9dcf3693b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1744,7 +1744,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:02 GMT" + "Thu, 27 Aug 2015 11:08:07 GMT" ] }, "StatusCode": 200 @@ -1759,10 +1759,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-08-13T03:59:04.6245431Z\",\r\n \"duration\": \"PT1M9.5521367S\",\r\n \"trackingId\": \"0ab5a924-7fab-4680-af30-7304b73e24e8\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:43.7226319Z\",\r\n \"duration\": \"PT42.1884111S\",\r\n \"trackingId\": \"382998b6-e3c5-4bc5-812e-54f6688a8f1d\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1774,16 +1774,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14510" ], "x-ms-request-id": [ - "4d1cdca3-0e93-45fe-84f5-c6ad1c590d22" + "8eaea2bd-ed9f-49af-abb6-0b058ec88281" ], "x-ms-correlation-request-id": [ - "4d1cdca3-0e93-45fe-84f5-c6ad1c590d22" + "8eaea2bd-ed9f-49af-abb6-0b058ec88281" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035906Z:4d1cdca3-0e93-45fe-84f5-c6ad1c590d22" + "WESTEUROPE:20150827T110812Z:8eaea2bd-ed9f-49af-abb6-0b058ec88281" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1792,7 +1792,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:05 GMT" + "Thu, 27 Aug 2015 11:08:11 GMT" ] }, "StatusCode": 200 @@ -1807,10 +1807,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-08-13T03:59:04.6245431Z\",\r\n \"duration\": \"PT1M9.5521367S\",\r\n \"trackingId\": \"0ab5a924-7fab-4680-af30-7304b73e24e8\",\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-08-13T03:57:58.3604684Z\",\r\n \"duration\": \"PT3.2826403S\",\r\n \"trackingId\": \"44c9d400-e519-496f-b89b-7e5ad03e02f5\",\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-08-13T03:57:54.909051Z\",\r\n \"duration\": \"PT42.8812371S\",\r\n \"trackingId\": \"ab0ff494-5123-4831-a5c1-90a490b782e9\",\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/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-08-27T11:07:43.7226319Z\",\r\n \"duration\": \"PT42.1884111S\",\r\n \"trackingId\": \"382998b6-e3c5-4bc5-812e-54f6688a8f1d\",\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-08-27T11:07:05.3119785Z\",\r\n \"duration\": \"PT3.7254694S\",\r\n \"trackingId\": \"5ac104d8-4bb2-4759-a8d0-b2b599e2a282\",\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-08-27T11:07:01.3902919Z\",\r\n \"duration\": \"PT54.0610688S\",\r\n \"trackingId\": \"ebe7c0e9-4c3b-48b4-90ed-f5f791c0a0f4\",\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}", "ResponseHeaders": { "Content-Length": [ - "2103" + "2102" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1822,16 +1822,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14507" ], "x-ms-request-id": [ - "e88b0c6a-e7eb-4dab-9c7d-22672374842f" + "31dc0bff-815b-4295-b0b2-a6cd513df3cc" ], "x-ms-correlation-request-id": [ - "e88b0c6a-e7eb-4dab-9c7d-22672374842f" + "31dc0bff-815b-4295-b0b2-a6cd513df3cc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035910Z:e88b0c6a-e7eb-4dab-9c7d-22672374842f" + "WESTEUROPE:20150827T110816Z:31dc0bff-815b-4295-b0b2-a6cd513df3cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1840,7 +1840,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:09 GMT" + "Thu, 27 Aug 2015 11:08:16 GMT" ] }, "StatusCode": 200 @@ -1855,10 +1855,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1870,16 +1870,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14584" ], "x-ms-request-id": [ - "24bca529-53f6-48f8-a3ae-650a7bddc0f7" + "5731ee89-f2da-4731-9ca0-04a625ac12cc" ], "x-ms-correlation-request-id": [ - "24bca529-53f6-48f8-a3ae-650a7bddc0f7" + "5731ee89-f2da-4731-9ca0-04a625ac12cc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035712Z:24bca529-53f6-48f8-a3ae-650a7bddc0f7" + "WESTEUROPE:20150827T110608Z:5731ee89-f2da-4731-9ca0-04a625ac12cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1888,7 +1888,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:12 GMT" + "Thu, 27 Aug 2015 11:06:08 GMT" ] }, "StatusCode": 200 @@ -1903,10 +1903,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1918,16 +1918,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14582" ], "x-ms-request-id": [ - "429a6775-956d-4d11-b972-2d2ffe829918" + "429f9d3e-e76d-48c6-b6bc-50a9aff3224f" ], "x-ms-correlation-request-id": [ - "429a6775-956d-4d11-b972-2d2ffe829918" + "429f9d3e-e76d-48c6-b6bc-50a9aff3224f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035716Z:429a6775-956d-4d11-b972-2d2ffe829918" + "WESTEUROPE:20150827T110612Z:429f9d3e-e76d-48c6-b6bc-50a9aff3224f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1936,7 +1936,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:15 GMT" + "Thu, 27 Aug 2015 11:06:11 GMT" ] }, "StatusCode": 200 @@ -1951,10 +1951,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1966,16 +1966,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14580" ], "x-ms-request-id": [ - "d992eee8-2dfb-4799-937c-79f07b5b2c2e" + "91328411-8287-4cd6-8887-beec5dcc7679" ], "x-ms-correlation-request-id": [ - "d992eee8-2dfb-4799-937c-79f07b5b2c2e" + "91328411-8287-4cd6-8887-beec5dcc7679" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035719Z:d992eee8-2dfb-4799-937c-79f07b5b2c2e" + "WESTEUROPE:20150827T110616Z:91328411-8287-4cd6-8887-beec5dcc7679" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1984,7 +1984,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:18 GMT" + "Thu, 27 Aug 2015 11:06:15 GMT" ] }, "StatusCode": 200 @@ -1999,10 +1999,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2014,16 +2014,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14578" ], "x-ms-request-id": [ - "95c75adc-13f6-4322-9dc8-56f66e1f7b19" + "a8ab3d4a-dab7-467e-b995-22f22da321f5" ], "x-ms-correlation-request-id": [ - "95c75adc-13f6-4322-9dc8-56f66e1f7b19" + "a8ab3d4a-dab7-467e-b995-22f22da321f5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035723Z:95c75adc-13f6-4322-9dc8-56f66e1f7b19" + "WESTEUROPE:20150827T110620Z:a8ab3d4a-dab7-467e-b995-22f22da321f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2032,7 +2032,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:22 GMT" + "Thu, 27 Aug 2015 11:06:19 GMT" ] }, "StatusCode": 200 @@ -2047,10 +2047,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2062,16 +2062,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14576" ], "x-ms-request-id": [ - "6098f005-aa1e-4f64-babf-e01384c16f30" + "9e1eb10b-6c4e-4b77-8967-e9610f842724" ], "x-ms-correlation-request-id": [ - "6098f005-aa1e-4f64-babf-e01384c16f30" + "9e1eb10b-6c4e-4b77-8967-e9610f842724" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035726Z:6098f005-aa1e-4f64-babf-e01384c16f30" + "WESTEUROPE:20150827T110623Z:9e1eb10b-6c4e-4b77-8967-e9610f842724" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2080,7 +2080,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:25 GMT" + "Thu, 27 Aug 2015 11:06:22 GMT" ] }, "StatusCode": 200 @@ -2095,10 +2095,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2110,16 +2110,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14572" ], "x-ms-request-id": [ - "a2f130f9-db71-4e99-aa99-e59fdf462eb3" + "636e5c23-025d-4024-af1b-3b7746cd8208" ], "x-ms-correlation-request-id": [ - "a2f130f9-db71-4e99-aa99-e59fdf462eb3" + "636e5c23-025d-4024-af1b-3b7746cd8208" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035729Z:a2f130f9-db71-4e99-aa99-e59fdf462eb3" + "WESTEUROPE:20150827T110627Z:636e5c23-025d-4024-af1b-3b7746cd8208" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2128,7 +2128,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:29 GMT" + "Thu, 27 Aug 2015 11:06:26 GMT" ] }, "StatusCode": 200 @@ -2143,10 +2143,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2158,16 +2158,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14570" ], "x-ms-request-id": [ - "949a745e-7046-40db-99eb-8e5d3cd2cd56" + "76558444-0fca-41da-94df-e09fef2abf14" ], "x-ms-correlation-request-id": [ - "949a745e-7046-40db-99eb-8e5d3cd2cd56" + "76558444-0fca-41da-94df-e09fef2abf14" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035733Z:949a745e-7046-40db-99eb-8e5d3cd2cd56" + "WESTEUROPE:20150827T110631Z:76558444-0fca-41da-94df-e09fef2abf14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2176,7 +2176,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:33 GMT" + "Thu, 27 Aug 2015 11:06:30 GMT" ] }, "StatusCode": 200 @@ -2191,10 +2191,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2206,16 +2206,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14568" ], "x-ms-request-id": [ - "9c1b610b-339d-49be-80e7-4f961f201eec" + "b0204ad6-5132-4d54-afed-36cc548a0846" ], "x-ms-correlation-request-id": [ - "9c1b610b-339d-49be-80e7-4f961f201eec" + "b0204ad6-5132-4d54-afed-36cc548a0846" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035736Z:9c1b610b-339d-49be-80e7-4f961f201eec" + "WESTEUROPE:20150827T110634Z:b0204ad6-5132-4d54-afed-36cc548a0846" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2224,7 +2224,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:36 GMT" + "Thu, 27 Aug 2015 11:06:34 GMT" ] }, "StatusCode": 200 @@ -2239,10 +2239,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2254,16 +2254,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14566" ], "x-ms-request-id": [ - "c0083b03-311c-4373-9156-32e4b164f02c" + "727838bf-c518-4b33-bc93-60ce45ca21d4" ], "x-ms-correlation-request-id": [ - "c0083b03-311c-4373-9156-32e4b164f02c" + "727838bf-c518-4b33-bc93-60ce45ca21d4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035740Z:c0083b03-311c-4373-9156-32e4b164f02c" + "WESTEUROPE:20150827T110638Z:727838bf-c518-4b33-bc93-60ce45ca21d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2272,7 +2272,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:40 GMT" + "Thu, 27 Aug 2015 11:06:38 GMT" ] }, "StatusCode": 200 @@ -2287,10 +2287,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2302,16 +2302,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14564" ], "x-ms-request-id": [ - "fc7163bd-9329-4b33-9926-180554b5ead6" + "8d17b408-8b4c-437e-a217-64acc708c9d6" ], "x-ms-correlation-request-id": [ - "fc7163bd-9329-4b33-9926-180554b5ead6" + "8d17b408-8b4c-437e-a217-64acc708c9d6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035743Z:fc7163bd-9329-4b33-9926-180554b5ead6" + "WESTEUROPE:20150827T110642Z:8d17b408-8b4c-437e-a217-64acc708c9d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2320,7 +2320,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:43 GMT" + "Thu, 27 Aug 2015 11:06:42 GMT" ] }, "StatusCode": 200 @@ -2335,10 +2335,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2350,16 +2350,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14562" ], "x-ms-request-id": [ - "c0ad75d1-02f1-4002-a790-ec6d6d337548" + "918012c3-eaf6-4432-97ca-b359667c7b5b" ], "x-ms-correlation-request-id": [ - "c0ad75d1-02f1-4002-a790-ec6d6d337548" + "918012c3-eaf6-4432-97ca-b359667c7b5b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035747Z:c0ad75d1-02f1-4002-a790-ec6d6d337548" + "WESTEUROPE:20150827T110646Z:918012c3-eaf6-4432-97ca-b359667c7b5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2368,7 +2368,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:47 GMT" + "Thu, 27 Aug 2015 11:06:45 GMT" ] }, "StatusCode": 200 @@ -2383,10 +2383,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2398,16 +2398,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14560" ], "x-ms-request-id": [ - "374944a5-2aaf-4b62-98d2-fa272da27030" + "7003ff19-b764-434d-970d-110d66394368" ], "x-ms-correlation-request-id": [ - "374944a5-2aaf-4b62-98d2-fa272da27030" + "7003ff19-b764-434d-970d-110d66394368" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035750Z:374944a5-2aaf-4b62-98d2-fa272da27030" + "WESTEUROPE:20150827T110650Z:7003ff19-b764-434d-970d-110d66394368" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2416,7 +2416,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:50 GMT" + "Thu, 27 Aug 2015 11:06:49 GMT" ] }, "StatusCode": 200 @@ -2431,10 +2431,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2446,16 +2446,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14558" ], "x-ms-request-id": [ - "eff5d528-46f3-4313-bacf-9f909ddc0623" + "f07e71da-02b9-4997-9d8d-feee085898d0" ], "x-ms-correlation-request-id": [ - "eff5d528-46f3-4313-bacf-9f909ddc0623" + "f07e71da-02b9-4997-9d8d-feee085898d0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035754Z:eff5d528-46f3-4313-bacf-9f909ddc0623" + "WESTEUROPE:20150827T110653Z:f07e71da-02b9-4997-9d8d-feee085898d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2464,7 +2464,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:53 GMT" + "Thu, 27 Aug 2015 11:06:53 GMT" ] }, "StatusCode": 200 @@ -2479,10 +2479,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2494,16 +2494,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14556" ], "x-ms-request-id": [ - "7c1078ef-51ec-4de9-b162-011aa5c4b421" + "8ab362f1-04de-44e1-99bd-7fa1b0bf40a9" ], "x-ms-correlation-request-id": [ - "7c1078ef-51ec-4de9-b162-011aa5c4b421" + "8ab362f1-04de-44e1-99bd-7fa1b0bf40a9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035757Z:7c1078ef-51ec-4de9-b162-011aa5c4b421" + "WESTEUROPE:20150827T110657Z:8ab362f1-04de-44e1-99bd-7fa1b0bf40a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2512,7 +2512,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:57:57 GMT" + "Thu, 27 Aug 2015 11:06:57 GMT" ] }, "StatusCode": 200 @@ -2527,10 +2527,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2542,16 +2542,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14554" ], "x-ms-request-id": [ - "e68ccca7-366e-49e3-b099-8a7ca6b5e491" + "0715318e-9261-4a3a-b94f-a3652be0b7cc" ], "x-ms-correlation-request-id": [ - "e68ccca7-366e-49e3-b099-8a7ca6b5e491" + "0715318e-9261-4a3a-b94f-a3652be0b7cc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035801Z:e68ccca7-366e-49e3-b099-8a7ca6b5e491" + "WESTEUROPE:20150827T110701Z:0715318e-9261-4a3a-b94f-a3652be0b7cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2560,7 +2560,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:00 GMT" + "Thu, 27 Aug 2015 11:07:00 GMT" ] }, "StatusCode": 200 @@ -2575,10 +2575,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2590,16 +2590,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14552" ], "x-ms-request-id": [ - "25a4d370-8fc7-4bbb-8f53-853b8eaa3f6e" + "640d4aaf-6bfa-4ccf-b4bb-13aaa03e4b54" ], "x-ms-correlation-request-id": [ - "25a4d370-8fc7-4bbb-8f53-853b8eaa3f6e" + "640d4aaf-6bfa-4ccf-b4bb-13aaa03e4b54" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035804Z:25a4d370-8fc7-4bbb-8f53-853b8eaa3f6e" + "WESTEUROPE:20150827T110705Z:640d4aaf-6bfa-4ccf-b4bb-13aaa03e4b54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2608,7 +2608,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:04 GMT" + "Thu, 27 Aug 2015 11:07:04 GMT" ] }, "StatusCode": 200 @@ -2623,10 +2623,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2638,16 +2638,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14550" ], "x-ms-request-id": [ - "eeef82ad-7c89-4532-82d5-8b2050e8a32d" + "93467076-57a3-4057-9056-47f26921681e" ], "x-ms-correlation-request-id": [ - "eeef82ad-7c89-4532-82d5-8b2050e8a32d" + "93467076-57a3-4057-9056-47f26921681e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035808Z:eeef82ad-7c89-4532-82d5-8b2050e8a32d" + "WESTEUROPE:20150827T110709Z:93467076-57a3-4057-9056-47f26921681e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2656,7 +2656,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:07 GMT" + "Thu, 27 Aug 2015 11:07:08 GMT" ] }, "StatusCode": 200 @@ -2671,10 +2671,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2686,16 +2686,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14546" ], "x-ms-request-id": [ - "38afae37-2da4-4e9d-ad86-8a4daa4af674" + "247fc889-9d12-483c-9bf5-e3d0ffb5d4d0" ], "x-ms-correlation-request-id": [ - "38afae37-2da4-4e9d-ad86-8a4daa4af674" + "247fc889-9d12-483c-9bf5-e3d0ffb5d4d0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035812Z:38afae37-2da4-4e9d-ad86-8a4daa4af674" + "WESTEUROPE:20150827T110713Z:247fc889-9d12-483c-9bf5-e3d0ffb5d4d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2704,7 +2704,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:11 GMT" + "Thu, 27 Aug 2015 11:07:12 GMT" ] }, "StatusCode": 200 @@ -2719,10 +2719,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2734,16 +2734,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14543" ], "x-ms-request-id": [ - "7de37ae5-dbe8-40af-9b6f-15cf735c4744" + "a5ed6515-1511-4971-88e1-cbfc4e1c430a" ], "x-ms-correlation-request-id": [ - "7de37ae5-dbe8-40af-9b6f-15cf735c4744" + "a5ed6515-1511-4971-88e1-cbfc4e1c430a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035815Z:7de37ae5-dbe8-40af-9b6f-15cf735c4744" + "WESTEUROPE:20150827T110717Z:a5ed6515-1511-4971-88e1-cbfc4e1c430a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2752,7 +2752,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:15 GMT" + "Thu, 27 Aug 2015 11:07:16 GMT" ] }, "StatusCode": 200 @@ -2767,10 +2767,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2782,16 +2782,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14540" ], "x-ms-request-id": [ - "292da504-1385-42c8-a6da-455cc45dbfc9" + "3034d48a-bf7d-443b-9e1c-98016e65aa35" ], "x-ms-correlation-request-id": [ - "292da504-1385-42c8-a6da-455cc45dbfc9" + "3034d48a-bf7d-443b-9e1c-98016e65aa35" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035819Z:292da504-1385-42c8-a6da-455cc45dbfc9" + "WESTEUROPE:20150827T110721Z:3034d48a-bf7d-443b-9e1c-98016e65aa35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,7 +2800,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:18 GMT" + "Thu, 27 Aug 2015 11:07:20 GMT" ] }, "StatusCode": 200 @@ -2815,10 +2815,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2830,16 +2830,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14537" ], "x-ms-request-id": [ - "93d1204b-ae09-4d6c-aac5-371d1adbe076" + "6659beb2-12b5-47e6-b4e4-51e162a6759e" ], "x-ms-correlation-request-id": [ - "93d1204b-ae09-4d6c-aac5-371d1adbe076" + "6659beb2-12b5-47e6-b4e4-51e162a6759e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035823Z:93d1204b-ae09-4d6c-aac5-371d1adbe076" + "WESTEUROPE:20150827T110725Z:6659beb2-12b5-47e6-b4e4-51e162a6759e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2848,7 +2848,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:22 GMT" + "Thu, 27 Aug 2015 11:07:24 GMT" ] }, "StatusCode": 200 @@ -2863,10 +2863,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2878,16 +2878,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14532" ], "x-ms-request-id": [ - "d78a316b-9e6a-4e3b-88a3-6c4002bdd586" + "4df76c3d-1ab5-4125-a9b9-6570eef6cd89" ], "x-ms-correlation-request-id": [ - "d78a316b-9e6a-4e3b-88a3-6c4002bdd586" + "4df76c3d-1ab5-4125-a9b9-6570eef6cd89" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035826Z:d78a316b-9e6a-4e3b-88a3-6c4002bdd586" + "WESTEUROPE:20150827T110729Z:4df76c3d-1ab5-4125-a9b9-6570eef6cd89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2896,7 +2896,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:26 GMT" + "Thu, 27 Aug 2015 11:07:29 GMT" ] }, "StatusCode": 200 @@ -2911,10 +2911,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2926,16 +2926,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14530" ], "x-ms-request-id": [ - "4b0204bf-1680-46a7-98c1-300c8b358051" + "93cd2b06-c024-46ba-8ca7-2fb0cd6312b3" ], "x-ms-correlation-request-id": [ - "4b0204bf-1680-46a7-98c1-300c8b358051" + "93cd2b06-c024-46ba-8ca7-2fb0cd6312b3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035830Z:4b0204bf-1680-46a7-98c1-300c8b358051" + "WESTEUROPE:20150827T110733Z:93cd2b06-c024-46ba-8ca7-2fb0cd6312b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2944,7 +2944,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:30 GMT" + "Thu, 27 Aug 2015 11:07:33 GMT" ] }, "StatusCode": 200 @@ -2959,10 +2959,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2974,16 +2974,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14527" ], "x-ms-request-id": [ - "1428a607-8f4c-41c6-8cca-8153814112eb" + "96fdf6a8-f3b6-47ef-835d-32a869e3e905" ], "x-ms-correlation-request-id": [ - "1428a607-8f4c-41c6-8cca-8153814112eb" + "96fdf6a8-f3b6-47ef-835d-32a869e3e905" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035834Z:1428a607-8f4c-41c6-8cca-8153814112eb" + "WESTEUROPE:20150827T110737Z:96fdf6a8-f3b6-47ef-835d-32a869e3e905" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2992,7 +2992,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:34 GMT" + "Thu, 27 Aug 2015 11:07:37 GMT" ] }, "StatusCode": 200 @@ -3007,10 +3007,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3022,16 +3022,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14525" ], "x-ms-request-id": [ - "5dab59a4-aa0e-4059-a0c6-bb4ceb1b7c97" + "50c15707-e785-4b11-a3da-b511298cb48d" ], "x-ms-correlation-request-id": [ - "5dab59a4-aa0e-4059-a0c6-bb4ceb1b7c97" + "50c15707-e785-4b11-a3da-b511298cb48d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035837Z:5dab59a4-aa0e-4059-a0c6-bb4ceb1b7c97" + "WESTEUROPE:20150827T110741Z:50c15707-e785-4b11-a3da-b511298cb48d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3040,7 +3040,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:37 GMT" + "Thu, 27 Aug 2015 11:07:40 GMT" ] }, "StatusCode": 200 @@ -3055,10 +3055,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3070,16 +3070,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14523" ], "x-ms-request-id": [ - "00cc7cb9-86e1-4b39-aede-ca394a679811" + "495e2ed9-395c-4961-8f3b-5239c7007c56" ], "x-ms-correlation-request-id": [ - "00cc7cb9-86e1-4b39-aede-ca394a679811" + "495e2ed9-395c-4961-8f3b-5239c7007c56" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035841Z:00cc7cb9-86e1-4b39-aede-ca394a679811" + "WESTEUROPE:20150827T110745Z:495e2ed9-395c-4961-8f3b-5239c7007c56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3088,7 +3088,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:41 GMT" + "Thu, 27 Aug 2015 11:07:44 GMT" ] }, "StatusCode": 200 @@ -3103,10 +3103,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3118,16 +3118,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14521" ], "x-ms-request-id": [ - "b113970a-d8ad-485d-886a-f849b551c92e" + "39b23dbe-1485-4b63-a0d7-ee74e57ff72f" ], "x-ms-correlation-request-id": [ - "b113970a-d8ad-485d-886a-f849b551c92e" + "39b23dbe-1485-4b63-a0d7-ee74e57ff72f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035845Z:b113970a-d8ad-485d-886a-f849b551c92e" + "WESTEUROPE:20150827T110749Z:39b23dbe-1485-4b63-a0d7-ee74e57ff72f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3136,7 +3136,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:44 GMT" + "Thu, 27 Aug 2015 11:07:48 GMT" ] }, "StatusCode": 200 @@ -3151,10 +3151,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3166,16 +3166,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14519" ], "x-ms-request-id": [ - "2feb0d27-b6e7-4dbd-b9c9-41c81de6b8ad" + "07319e43-1285-48bd-bb58-3e5c2fcefa45" ], "x-ms-correlation-request-id": [ - "2feb0d27-b6e7-4dbd-b9c9-41c81de6b8ad" + "07319e43-1285-48bd-bb58-3e5c2fcefa45" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035848Z:2feb0d27-b6e7-4dbd-b9c9-41c81de6b8ad" + "WESTEUROPE:20150827T110753Z:07319e43-1285-48bd-bb58-3e5c2fcefa45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3184,7 +3184,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:48 GMT" + "Thu, 27 Aug 2015 11:07:52 GMT" ] }, "StatusCode": 200 @@ -3199,10 +3199,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3214,16 +3214,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14517" ], "x-ms-request-id": [ - "8a3ab3e6-61d0-4a2e-b65d-d8ede2513fd4" + "96ee8ba5-29f7-483c-8cf9-67a9b8342a46" ], "x-ms-correlation-request-id": [ - "8a3ab3e6-61d0-4a2e-b65d-d8ede2513fd4" + "96ee8ba5-29f7-483c-8cf9-67a9b8342a46" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035852Z:8a3ab3e6-61d0-4a2e-b65d-d8ede2513fd4" + "WESTEUROPE:20150827T110757Z:96ee8ba5-29f7-483c-8cf9-67a9b8342a46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3232,7 +3232,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:51 GMT" + "Thu, 27 Aug 2015 11:07:56 GMT" ] }, "StatusCode": 200 @@ -3247,10 +3247,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3262,16 +3262,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14515" ], "x-ms-request-id": [ - "d39b8595-fdc7-4f9a-8715-5264a176f1c5" + "59b77787-0433-4051-901d-fb3edf83c9ea" ], "x-ms-correlation-request-id": [ - "d39b8595-fdc7-4f9a-8715-5264a176f1c5" + "59b77787-0433-4051-901d-fb3edf83c9ea" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035856Z:d39b8595-fdc7-4f9a-8715-5264a176f1c5" + "WESTEUROPE:20150827T110801Z:59b77787-0433-4051-901d-fb3edf83c9ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3280,7 +3280,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:55 GMT" + "Thu, 27 Aug 2015 11:08:00 GMT" ] }, "StatusCode": 200 @@ -3295,10 +3295,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3310,16 +3310,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14513" ], "x-ms-request-id": [ - "f772e05a-145f-4df2-8783-e0e27afe8147" + "062705d6-490a-40d0-b72a-df1f2d479b30" ], "x-ms-correlation-request-id": [ - "f772e05a-145f-4df2-8783-e0e27afe8147" + "062705d6-490a-40d0-b72a-df1f2d479b30" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035859Z:f772e05a-145f-4df2-8783-e0e27afe8147" + "WESTEUROPE:20150827T110805Z:062705d6-490a-40d0-b72a-df1f2d479b30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3328,7 +3328,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:58:59 GMT" + "Thu, 27 Aug 2015 11:08:04 GMT" ] }, "StatusCode": 200 @@ -3343,10 +3343,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3358,16 +3358,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14511" ], "x-ms-request-id": [ - "44183278-3d1d-4055-9605-a42cde21186d" + "ed567ea0-9407-431a-8498-fadfceb791b8" ], "x-ms-correlation-request-id": [ - "44183278-3d1d-4055-9605-a42cde21186d" + "ed567ea0-9407-431a-8498-fadfceb791b8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035903Z:44183278-3d1d-4055-9605-a42cde21186d" + "WESTEUROPE:20150827T110809Z:ed567ea0-9407-431a-8498-fadfceb791b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3376,7 +3376,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:02 GMT" + "Thu, 27 Aug 2015 11:08:08 GMT" ] }, "StatusCode": 200 @@ -3391,10 +3391,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-08-13T03:57:11.959133Z\",\r\n \"duration\": \"PT3.5938034S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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-08-27T11:06:07.2198115Z\",\r\n \"duration\": \"PT4.8708389S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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": [ - "2301" + "2302" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3406,16 +3406,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14509" ], "x-ms-request-id": [ - "5e69247a-2525-4e4a-80a4-7dd6e289b86b" + "0ec3ce38-df4c-4bed-ada6-f5587cdfca6e" ], "x-ms-correlation-request-id": [ - "5e69247a-2525-4e4a-80a4-7dd6e289b86b" + "0ec3ce38-df4c-4bed-ada6-f5587cdfca6e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035907Z:5e69247a-2525-4e4a-80a4-7dd6e289b86b" + "WESTEUROPE:20150827T110813Z:0ec3ce38-df4c-4bed-ada6-f5587cdfca6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3424,7 +3424,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:06 GMT" + "Thu, 27 Aug 2015 11:08:12 GMT" ] }, "StatusCode": 200 @@ -3439,7 +3439,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\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-13T03:59:06.7563329Z\",\r\n \"duration\": \"PT1M58.3910033S\",\r\n \"correlationId\": \"29fac65c-163b-4ffa-99de-5a8820e9beef\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-27T11:08:16.5466232Z\",\r\n \"duration\": \"PT2M14.1976506S\",\r\n \"correlationId\": \"7178cbdd-ede4-4101-bf29-2c6910cc04c4\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\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" @@ -3454,16 +3454,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14505" ], "x-ms-request-id": [ - "5ca3d886-38e8-418a-ae4a-ead2ff2fbd45" + "af147092-4f1c-4cde-9cb0-12968844b718" ], "x-ms-correlation-request-id": [ - "5ca3d886-38e8-418a-ae4a-ead2ff2fbd45" + "af147092-4f1c-4cde-9cb0-12968844b718" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035910Z:5ca3d886-38e8-418a-ae4a-ead2ff2fbd45" + "WESTEUROPE:20150827T110817Z:af147092-4f1c-4cde-9cb0-12968844b718" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3472,7 +3472,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:09 GMT" + "Thu, 27 Aug 2015 11:08:17 GMT" ] }, "StatusCode": 200 @@ -3502,16 +3502,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14504" ], "x-ms-request-id": [ - "9a41eed2-3079-49f2-afba-1c3e2f67228a" + "2fc6c7b2-fd26-4821-a32d-a73dc155d94d" ], "x-ms-correlation-request-id": [ - "9a41eed2-3079-49f2-afba-1c3e2f67228a" + "2fc6c7b2-fd26-4821-a32d-a73dc155d94d" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035912Z:9a41eed2-3079-49f2-afba-1c3e2f67228a" + "WESTEUROPE:20150827T110819Z:2fc6c7b2-fd26-4821-a32d-a73dc155d94d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3520,7 +3520,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:11 GMT" + "Thu, 27 Aug 2015 11:08:19 GMT" ] }, "StatusCode": 200 @@ -3553,16 +3553,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "brazilus:ee631560-0c1f-4b42-a6c4-098f32b3fdb9" + "westeurope:40d61008-bd28-455d-bcb3-548dacdb2c04" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14520" ], "x-ms-correlation-request-id": [ - "6315392d-c1c6-4f8d-8f6a-da6360be9b49" + "45400a4f-aa35-4ffa-86cb-b5a33f65786e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035914Z:6315392d-c1c6-4f8d-8f6a-da6360be9b49" + "WESTEUROPE:20150827T110820Z:45400a4f-aa35-4ffa-86cb-b5a33f65786e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3571,7 +3571,7 @@ "no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:14 GMT" + "Thu, 27 Aug 2015 11:08:20 GMT" ] }, "StatusCode": 200 @@ -3586,7 +3586,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "72964bdd-5873-4e0e-8c23-84cf9bc4ec8f" + "982369d5-44ce-48cd-8a2c-dd9ff468f361" ] }, "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}", @@ -3598,7 +3598,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "efa6b2cc-3fdf-49e6-a3bc-978283f66026" + "2a2d3f67-a98c-4ed1-ac0d-f5ceef7cfeaa" ], "X-Content-Type-Options": [ "nosniff" @@ -3610,19 +3610,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14463" ], "x-ms-correlation-request-id": [ - "ee4bf475-e084-401f-88cb-238dc1933118" + "aaa4ab5d-d34e-4d0d-aa5a-018440d50023" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035920Z:ee4bf475-e084-401f-88cb-238dc1933118" + "WESTEUROPE:20150827T110832Z:aaa4ab5d-d34e-4d0d-aa5a-018440d50023" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:19 GMT" + "Thu, 27 Aug 2015 11:08:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3640,7 +3640,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a8146936-c822-42d0-9dc3-d0a39bd92cc7" + "f4e39bbf-9dec-451b-badc-67553076abc9" ] }, "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}", @@ -3652,7 +3652,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5aff9957-9412-48c8-8350-d80836e1827f" + "1e19a14a-1e45-400d-84c6-e2be361ec15b" ], "X-Content-Type-Options": [ "nosniff" @@ -3664,19 +3664,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14457" ], "x-ms-correlation-request-id": [ - "4f61b39d-bbf1-4b3e-bb84-027c7577198d" + "24fcc83c-6633-4540-838d-ac76816061cc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035926Z:4f61b39d-bbf1-4b3e-bb84-027c7577198d" + "WESTEUROPE:20150827T110840Z:24fcc83c-6633-4540-838d-ac76816061cc" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:26 GMT" + "Thu, 27 Aug 2015 11:08:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3694,7 +3694,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "31d6636d-802f-4657-82d3-5e1aa807d4d3" + "736a56b7-8655-4df2-b945-e5374e570e31" ] }, "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}", @@ -3706,7 +3706,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "40278bb7-4735-4f92-aa3b-dcba86edd6e7" + "feeae47f-0c0d-4702-b478-b6fe71d4fa4c" ], "X-Content-Type-Options": [ "nosniff" @@ -3718,19 +3718,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14453" ], "x-ms-correlation-request-id": [ - "86fff93f-8fea-42ad-9f63-946c7bd2d923" + "801d2270-1d45-4f05-9911-93a89a84ea7e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035935Z:86fff93f-8fea-42ad-9f63-946c7bd2d923" + "WESTEUROPE:20150827T110852Z:801d2270-1d45-4f05-9911-93a89a84ea7e" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:34 GMT" + "Thu, 27 Aug 2015 11:08:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3754,7 +3754,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "72964bdd-5873-4e0e-8c23-84cf9bc4ec8f" + "982369d5-44ce-48cd-8a2c-dd9ff468f361" ] }, "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}", @@ -3766,7 +3766,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "02e99d33-ae9a-40ff-a9f5-33618d03411c" + "59dd0953-f008-419e-a23b-331d162e765c" ], "X-Content-Type-Options": [ "nosniff" @@ -3784,16 +3784,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "48774672-c847-4a38-8ccf-0d0f9fd64965" + "52b0b12f-38ef-43ec-b803-f0905c93b679" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035922Z:48774672-c847-4a38-8ccf-0d0f9fd64965" + "WESTEUROPE:20150827T110835Z:52b0b12f-38ef-43ec-b803-f0905c93b679" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:22 GMT" + "Thu, 27 Aug 2015 11:08:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3811,7 +3811,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4e4c44f5-31fe-41f4-a0a5-596c330e247c" + "84ec348f-beea-4669-875b-0fc2885e4a14" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3823,7 +3823,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c2d6c2c3-102b-4428-86c1-28499f355bd3" + "de553e82-14ff-4daa-8e16-6ffba7c4bdda" ], "X-Content-Type-Options": [ "nosniff" @@ -3835,19 +3835,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14459" ], "x-ms-correlation-request-id": [ - "fc67f82d-0c04-49fc-9a39-61399d47fae7" + "5095743c-45d9-4273-a30c-83c8cb1abb03" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035923Z:fc67f82d-0c04-49fc-9a39-61399d47fae7" + "WESTEUROPE:20150827T110836Z:5095743c-45d9-4273-a30c-83c8cb1abb03" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:23 GMT" + "Thu, 27 Aug 2015 11:08:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3865,7 +3865,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a8146936-c822-42d0-9dc3-d0a39bd92cc7" + "f4e39bbf-9dec-451b-badc-67553076abc9" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3877,7 +3877,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "9aa4cd53-535f-43f9-9d6b-38d3f26401f1" + "5cac8045-ca90-499c-8f23-2629e8ae6c50" ], "X-Content-Type-Options": [ "nosniff" @@ -3889,19 +3889,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14458" ], "x-ms-correlation-request-id": [ - "7caa064b-ec75-416c-b9c5-36dfc5d87230" + "e6655fc2-f03b-4bcf-b617-57dde7ddd857" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035925Z:7caa064b-ec75-416c-b9c5-36dfc5d87230" + "WESTEUROPE:20150827T110838Z:e6655fc2-f03b-4bcf-b617-57dde7ddd857" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:24 GMT" + "Thu, 27 Aug 2015 11:08:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3919,7 +3919,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "955aae7c-9525-46fb-9e19-de43ce0f7d47" + "4c2ec754-6dd3-4da7-afc8-7b1b6bdd4288" ] }, "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}", @@ -3931,7 +3931,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "41f73c99-a60c-4f74-bcbe-3d6166cf71b0" + "eaaaf77b-8d7e-4ec4-8a89-e116f52d62fa" ], "X-Content-Type-Options": [ "nosniff" @@ -3943,19 +3943,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14456" ], "x-ms-correlation-request-id": [ - "b50a9475-5db9-4629-badd-f88fcbad7fb4" + "8c58631c-bb52-4101-bc55-57b8f8c0f683" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035930Z:b50a9475-5db9-4629-badd-f88fcbad7fb4" + "WESTEUROPE:20150827T110845Z:8c58631c-bb52-4101-bc55-57b8f8c0f683" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:30 GMT" + "Thu, 27 Aug 2015 11:08:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3973,7 +3973,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ed06f2a8-13c1-4090-a75f-cf8898e34afa" + "20f866a6-7f8d-468a-9524-999705f4ba34" ] }, "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}", @@ -3985,7 +3985,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b79da123-c7cb-46ff-8d8b-a20477ff9576" + "088af0d6-078e-4c67-9de3-7e07630fc58e" ], "X-Content-Type-Options": [ "nosniff" @@ -3997,19 +3997,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14455" ], "x-ms-correlation-request-id": [ - "c7c74178-18e0-475c-9b53-1b289d5f7988" + "2d700f4d-d802-4632-a8ab-32f60a4c01c0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035932Z:c7c74178-18e0-475c-9b53-1b289d5f7988" + "WESTEUROPE:20150827T110847Z:2d700f4d-d802-4632-a8ab-32f60a4c01c0" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:31 GMT" + "Thu, 27 Aug 2015 11:08:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4027,7 +4027,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "31d6636d-802f-4657-82d3-5e1aa807d4d3" + "736a56b7-8655-4df2-b945-e5374e570e31" ] }, "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}", @@ -4039,7 +4039,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b78ddc4f-90fb-4a4f-8f01-699726bbc6de" + "a3009211-d14f-448b-87dd-7d2e4175660e" ], "X-Content-Type-Options": [ "nosniff" @@ -4051,19 +4051,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14454" ], "x-ms-correlation-request-id": [ - "b2a0cc93-7fed-4d78-8b64-9393b9697aec" + "f512f8e7-c430-43be-bc95-85d23c1ae05b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035933Z:b2a0cc93-7fed-4d78-8b64-9393b9697aec" + "WESTEUROPE:20150827T110849Z:f512f8e7-c430-43be-bc95-85d23c1ae05b" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:33 GMT" + "Thu, 27 Aug 2015 11:08:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4081,7 +4081,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "3bf7b109-d66c-4f05-be47-c5dc148c779d" + "f3eceb90-bdde-4130-a158-1eb1b9ca5a35" ] }, "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}", @@ -4093,7 +4093,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2ee09f8e-4484-47ab-beb7-0ca17a138adb" + "7d59b270-fda5-48a0-9d1d-9cbc704f9396" ], "X-Content-Type-Options": [ "nosniff" @@ -4105,19 +4105,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14452" ], "x-ms-correlation-request-id": [ - "054a0359-b25a-40f8-a29d-ff3c31746757" + "e3f11663-400f-4e3b-9130-051a7d7464a3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035938Z:054a0359-b25a-40f8-a29d-ff3c31746757" + "WESTEUROPE:20150827T110856Z:e3f11663-400f-4e3b-9130-051a7d7464a3" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:37 GMT" + "Thu, 27 Aug 2015 11:08:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4135,7 +4135,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "dc7d0e96-0fd2-4b61-9f66-fa2dd2cea14b" + "65dc06e5-f136-4a17-8056-1dba46d809a0" ] }, "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}", @@ -4147,7 +4147,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d681e1ac-6ea6-4b94-80f2-1d8dff7940f2" + "ae2d1f5b-d081-4b75-8a0c-fe29a7bdc9bb" ], "X-Content-Type-Options": [ "nosniff" @@ -4159,19 +4159,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14451" ], "x-ms-correlation-request-id": [ - "bb236e2a-9e1e-4feb-ba7d-ad2fee73fe9b" + "51b34e90-2613-4d3f-b513-d438cd2e35b2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035939Z:bb236e2a-9e1e-4feb-ba7d-ad2fee73fe9b" + "WESTEUROPE:20150827T110858Z:51b34e90-2613-4d3f-b513-d438cd2e35b2" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:39 GMT" + "Thu, 27 Aug 2015 11:08:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4189,7 +4189,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "3a9e2e2e-ceae-4d6e-bbc1-bc3a53b22194" + "f5e57b4e-4dc2-4269-80ff-2f76fcfc8d5f" ] }, "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}", @@ -4201,7 +4201,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c401722f-cfd3-42c2-bbf1-e7a117a40f02" + "cd2f96b3-9eef-4e07-bdff-cbc09e23d04b" ], "X-Content-Type-Options": [ "nosniff" @@ -4213,19 +4213,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14450" ], "x-ms-correlation-request-id": [ - "b31b7f2c-5467-4b3d-a364-2b22925addff" + "2a38e390-d20b-4dfd-b835-202ff0581f0e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035941Z:b31b7f2c-5467-4b3d-a364-2b22925addff" + "WESTEUROPE:20150827T110900Z:2a38e390-d20b-4dfd-b835-202ff0581f0e" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:40 GMT" + "Thu, 27 Aug 2015 11:09:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4243,7 +4243,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "8e17bcb4-ec63-46d4-b88c-62a984a54d9c" + "7992665a-6b08-49e3-a30b-4ce6b39fb9ea" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -4255,7 +4255,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "63d1e3f2-684c-4edf-93a2-ba141ddcce1a" + "9e94faf7-764e-44fd-b5dc-b95923d1dd50" ], "X-Content-Type-Options": [ "nosniff" @@ -4267,19 +4267,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14449" ], "x-ms-correlation-request-id": [ - "20a91b7b-9994-40bc-927c-1e0e29868b27" + "196e4105-8793-4430-9da7-58ca691d1247" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035944Z:20a91b7b-9994-40bc-927c-1e0e29868b27" + "WESTEUROPE:20150827T110904Z:196e4105-8793-4430-9da7-58ca691d1247" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:43 GMT" + "Thu, 27 Aug 2015 11:09:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4297,7 +4297,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "64cd48c5-c19b-4d71-ade9-a209922112ed" + "ff8097e1-e3a5-415b-b9cd-de1d43071547" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -4309,7 +4309,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3b0cbf69-a8e0-4c8c-9d20-08974782e58e" + "886dd99b-ee83-4c97-82a2-5dff4a88a173" ], "X-Content-Type-Options": [ "nosniff" @@ -4321,19 +4321,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14448" ], "x-ms-correlation-request-id": [ - "c7e873c3-ed67-4bca-84e6-e8fad852e06c" + "49865a83-c19e-4344-b44f-d15b9d10e513" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035945Z:c7e873c3-ed67-4bca-84e6-e8fad852e06c" + "WESTEUROPE:20150827T110905Z:49865a83-c19e-4344-b44f-d15b9d10e513" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:45 GMT" + "Thu, 27 Aug 2015 11:09:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4357,7 +4357,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "a8146936-c822-42d0-9dc3-d0a39bd92cc7" + "f4e39bbf-9dec-451b-badc-67553076abc9" ] }, "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\": 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}", @@ -4369,7 +4369,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "f9036dd3-dced-45a2-b94a-e44faee11536" + "0c2e2067-9c8f-429c-b317-518614894599" ], "X-Content-Type-Options": [ "nosniff" @@ -4387,16 +4387,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "6cf6f102-bd96-4f07-974e-d1a0324fc64e" + "368284f6-c22b-4159-8357-d7f474331f71" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035929Z:6cf6f102-bd96-4f07-974e-d1a0324fc64e" + "WESTEUROPE:20150827T110843Z:368284f6-c22b-4159-8357-d7f474331f71" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:28 GMT" + "Thu, 27 Aug 2015 11:08:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4420,7 +4420,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "31d6636d-802f-4657-82d3-5e1aa807d4d3" + "736a56b7-8655-4df2-b945-e5374e570e31" ] }, "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\": 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}", @@ -4432,7 +4432,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "6657ed5d-17b1-4650-8cc8-cb6663688cbe" + "551bcdb2-1181-4844-a9c8-f5c52dd2e423" ], "X-Content-Type-Options": [ "nosniff" @@ -4450,16 +4450,16 @@ "1194" ], "x-ms-correlation-request-id": [ - "ef167ef4-d453-4d01-b401-f01c5a3bce0c" + "9b514f90-5ecc-49b7-981c-294627b0babd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035937Z:ef167ef4-d453-4d01-b401-f01c5a3bce0c" + "WESTEUROPE:20150827T110854Z:9b514f90-5ecc-49b7-981c-294627b0babd" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:36 GMT" + "Thu, 27 Aug 2015 11:08:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4477,7 +4477,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "3a9e2e2e-ceae-4d6e-bbc1-bc3a53b22194" + "f5e57b4e-4dc2-4269-80ff-2f76fcfc8d5f" ] }, "ResponseBody": "", @@ -4489,7 +4489,7 @@ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "b085a7e0-df16-4aa9-a1d0-98a201d1802b" + "2f47dce8-229f-49b6-834b-3c281eddeceb" ], "X-Content-Type-Options": [ "nosniff" @@ -4504,16 +4504,16 @@ "1193" ], "x-ms-correlation-request-id": [ - "296352ed-cf86-4405-91c2-cd46d6de5dbc" + "eaa7a187-015e-455b-82ae-c23a5e83981b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20150813T035943Z:296352ed-cf86-4405-91c2-cd46d6de5dbc" + "WESTEUROPE:20150827T110902Z:eaa7a187-015e-455b-82ae-c23a5e83981b" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 13 Aug 2015 03:59:42 GMT" + "Thu, 27 Aug 2015 11:09:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopy.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopy.json new file mode 100644 index 000000000000..22fb720bdce9 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopy.json @@ -0,0 +1,3566 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2240?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "fba3cb22-fac5-4678-b9a6-7a62f96f6fff" + ], + "x-ms-correlation-request-id": [ + "fba3cb22-fac5-4678-b9a6-7a62f96f6fff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234133Z:fba3cb22-fac5-4678-b9a6-7a62f96f6fff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:41:32 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2240?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "c3e1e8c2-374a-41d3-8385-6a60fceff44d" + ], + "x-ms-correlation-request-id": [ + "c3e1e8c2-374a-41d3-8385-6a60fceff44d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234749Z:c3e1e8c2-374a-41d3-8385-6a60fceff44d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:47:48 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2240?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "34" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240\",\r\n \"name\": \"onesdk2240\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "5c13f6f0-046c-41fb-bfab-5f4951731466" + ], + "x-ms-correlation-request-id": [ + "5c13f6f0-046c-41fb-bfab-5f4951731466" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234135Z:5c13f6f0-046c-41fb-bfab-5f4951731466" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:41:34 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "159940b0-7aee-4f2b-85d7-4774c75e93ce" + ], + "x-ms-correlation-request-id": [ + "159940b0-7aee-4f2b-85d7-4774c75e93ce" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234135Z:159940b0-7aee-4f2b-85d7-4774c75e93ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:41:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2240/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:fcfa3309-50d3-4c3f-810a-506992cf967d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "c5d83cd3-8879-4094-8b44-b9ad5818aee9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234135Z:c5d83cd3-8879-4094-8b44-b9ad5818aee9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:41:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3cab0eb6-bc30-4386-81db-357f8e4838dc" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5677' under resource group 'onesdk2240' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "22831546-87da-47bc-8189-87e213a6b379" + ], + "x-ms-correlation-request-id": [ + "22831546-87da-47bc-8189-87e213a6b379" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234136Z:22831546-87da-47bc-8189-87e213a6b379" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:41:35 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "034f25dc-7134-4468-b3dc-15c8e5d259af" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "e5717e06-599d-4947-9fd5-a26fc78dda45" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "4f63d48f-2ddd-4261-a9b0-76cee926029f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234220Z:4f63d48f-2ddd-4261-a9b0-76cee926029f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:42:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "bce30377-a52c-40cf-8c4e-c34d6fdc2215" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "b62415a1-9aff-4158-bc22-be6505ee5ff4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "09e93539-9c91-4d9b-8e70-be9f47686859" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234409Z:09e93539-9c91-4d9b-8e70-be9f47686859" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:44:09 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9d6e9ed0-b453-4c3a-87f6-5ca25a895189" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "7a866fcd-7029-4a55-8800-5261ebe5363d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "175227fd-2a11-4d76-ba11-38ab5d84ba87" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234615Z:175227fd-2a11-4d76-ba11-38ab5d84ba87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:46:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b24ccf27-163d-4047-85bc-d334ce4d87f3" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "cfe77064-aa31-47fe-ac1e-7e0bdd2a4653" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "1b524df6-5d10-4536-ae7b-9ef5df76ff5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234615Z:1b524df6-5d10-4536-ae7b-9ef5df76ff5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:46:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "bc6fb75a-d6b3-43f7-9a40-852550a13c04" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "caaa4c54-c8a9-45f2-a5d3-5cbb3499d493" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "ac23cda4-d80a-4640-9526-026c46b4c116" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234748Z:ac23cda4-d80a-4640-9526-026c46b4c116" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:47:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "1aeb6d5b-1858-4823-824b-4de686124caf" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "f5fe7706-013d-4c71-bb82-52f97dbb3fff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "0a594fdc-90e0-452b-8e9d-d828d8018e7f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234220Z:0a594fdc-90e0-452b-8e9d-d828d8018e7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:42:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b893e2d1-c2f3-494a-bb29-e0005af63247" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5677/databases/onesdk7653' under resource group 'onesdk2240' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8976c491-13db-4dc2-8fb2-c230f9ee6aa8" + ], + "x-ms-correlation-request-id": [ + "8976c491-13db-4dc2-8fb2-c230f9ee6aa8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234220Z:8976c491-13db-4dc2-8fb2-c230f9ee6aa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:42:19 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "127" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "52275251-dc34-4095-a2f7-8ff6c443ef60" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T16:42:21.919-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "2ba1dbe6-f842-4cb2-87ae-b42a06f862bf" + ], + "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": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "88853557-a23e-49fa-a8da-c126a7cd5381" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234223Z:88853557-a23e-49fa-a8da-c126a7cd5381" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:42:22 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzL29wZXJhdGlvblJlc3VsdHMvMmJhMWRiZTYtZjg0Mi00Y2IyLTg3YWUtYjQyYTA2Zjg2MmJmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "52275251-dc34-4095-a2f7-8ff6c443ef60" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:42:21.887Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "5dc428e5-2377-472b-a2dd-0f9114c8a1f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "831360f7-adfe-48f0-95bf-58f6ccc7ee28" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234224Z:831360f7-adfe-48f0-95bf-58f6ccc7ee28" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:42:23 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzL29wZXJhdGlvblJlc3VsdHMvMmJhMWRiZTYtZjg0Mi00Y2IyLTg3YWUtYjQyYTA2Zjg2MmJmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "52275251-dc34-4095-a2f7-8ff6c443ef60" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:42:21.887Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "2850316a-9fbd-40bf-88ed-af6a342c5e16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "ce7f821f-52f0-4303-ae98-be7fc47a863d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234254Z:ce7f821f-52f0-4303-ae98-be7fc47a863d" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:42:53 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzL29wZXJhdGlvblJlc3VsdHMvMmJhMWRiZTYtZjg0Mi00Y2IyLTg3YWUtYjQyYTA2Zjg2MmJmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "52275251-dc34-4095-a2f7-8ff6c443ef60" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:42:21.887Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "41b682bd-ee7e-4912-abf3-ce81879474af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "7516b34f-0d61-407b-adcc-b2aba3d53c08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234310Z:7516b34f-0d61-407b-adcc-b2aba3d53c08" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:43:09 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzL29wZXJhdGlvblJlc3VsdHMvMmJhMWRiZTYtZjg0Mi00Y2IyLTg3YWUtYjQyYTA2Zjg2MmJmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "52275251-dc34-4095-a2f7-8ff6c443ef60" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653\",\r\n \"name\": \"onesdk7653\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"8b1e8b6f-6d84-4807-8940-d78de4cd5b7a\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:42:22.387Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:53:18.827Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "822" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "2bf57576-f381-43b2-a28a-7c3ff05e8e69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "55bf97ee-677a-4111-b3bc-b1b770ba80f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234326Z:55bf97ee-677a-4111-b3bc-b1b770ba80f7" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:43:25 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8006?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-request-id": [ + "e66fe96f-9963-4e42-a64a-383c2e9f0fa4" + ], + "x-ms-correlation-request-id": [ + "e66fe96f-9963-4e42-a64a-383c2e9f0fa4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234326Z:e66fe96f-9963-4e42-a64a-383c2e9f0fa4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:43:25 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8006?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "cacb034c-c712-48c7-b9c8-c26eee887608" + ], + "x-ms-correlation-request-id": [ + "cacb034c-c712-48c7-b9c8-c26eee887608" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234938Z:cacb034c-c712-48c7-b9c8-c26eee887608" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:49:38 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8006?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "34" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006\",\r\n \"name\": \"onesdk8006\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-request-id": [ + "54cc971a-0d73-4114-950d-4b5bbe5a709c" + ], + "x-ms-correlation-request-id": [ + "54cc971a-0d73-4114-950d-4b5bbe5a709c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234328Z:54cc971a-0d73-4114-950d-4b5bbe5a709c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:43:27 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "586bff7e-ffc5-4365-8979-ff15ad215f80" + ], + "x-ms-correlation-request-id": [ + "586bff7e-ffc5-4365-8979-ff15ad215f80" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234328Z:586bff7e-ffc5-4365-8979-ff15ad215f80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:43:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8006/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:dab1b9bd-a0d8-4900-98e3-070971daa6ee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "a5a60422-0e80-4868-a5ae-be541a8d1b72" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234328Z:a5a60422-0e80-4868-a5ae-be541a8d1b72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:43:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "32f457e7-ac59-43d5-a836-1f22e1d22548" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk731' under resource group 'onesdk8006' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "145" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "127b5504-6cc5-45ad-9ba0-3ffd79b08394" + ], + "x-ms-correlation-request-id": [ + "127b5504-6cc5-45ad-9ba0-3ffd79b08394" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234328Z:127b5504-6cc5-45ad-9ba0-3ffd79b08394" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:43:28 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e4cd475-90fd-4b11-89ce-0ae336635a34" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731\",\r\n \"name\": \"onesdk731\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk731.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "464" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "845c9fa4-29fe-48cd-b954-a3a627d5e275" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "86da0a3a-a768-4516-ba90-ed3d3e5ba158" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234615Z:86da0a3a-a768-4516-ba90-ed3d3e5ba158" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:46:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e0460129-364d-4ca1-a103-29d2282840f5" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731\",\r\n \"name\": \"onesdk731\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk731.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "478" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "7df8c98f-7aea-4679-8c29-741b6912a66a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "d7eeddc4-6cf5-4563-87fa-1c74f5c1d994" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234409Z:d7eeddc4-6cf5-4563-87fa-1c74f5c1d994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:44:08 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "364e5b0c-017c-40d2-8460-d3f983c06df6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5677/databases/onesdk134' under resource group 'onesdk2240' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "40660e7f-0ec3-4d9b-a309-e25c323bfcc7" + ], + "x-ms-correlation-request-id": [ + "40660e7f-0ec3-4d9b-a309-e25c323bfcc7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234409Z:40660e7f-0ec3-4d9b-a309-e25c323bfcc7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:44:08 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/Servers/onesdk5677/databases/onesdk7653\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "296" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "48f77391-10ae-4c92-afc1-8a56c268252c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T16:44:11.195-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "95152f2f-e672-4c33-aa72-52e7615872a3" + ], + "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": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "c5cd3094-01c3-4786-8667-7ec3cca9350b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234412Z:c5cd3094-01c3-4786-8667-7ec3cca9350b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:44:12 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "48f77391-10ae-4c92-afc1-8a56c268252c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dd20a9b6-dbdd-4fc1-8f8f-6f6d2e1b6be2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "c0f79de1-b148-4973-9edd-a4abcbc74e53" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234413Z:c0f79de1-b148-4973-9edd-a4abcbc74e53" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:44:12 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "48f77391-10ae-4c92-afc1-8a56c268252c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "417e1ef9-a6cd-4dc8-94af-c7419c6903a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "9f40fbd7-893a-47b2-a756-ee50ff4241fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234424Z:9f40fbd7-893a-47b2-a756-ee50ff4241fb" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:44:23 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "48f77391-10ae-4c92-afc1-8a56c268252c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4b38edb3-7bfe-4a59-a52f-d36ac99a6f90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "57e21b40-e3b3-417f-bf9f-c943cbe46803" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234440Z:57e21b40-e3b3-417f-bf9f-c943cbe46803" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:44:39 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "48f77391-10ae-4c92-afc1-8a56c268252c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dbd85544-1644-49e1-a0a3-d8b1aca85ead" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "118717f6-869f-477d-9371-8f1fd5066859" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234455Z:118717f6-869f-477d-9371-8f1fd5066859" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:44:55 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "48f77391-10ae-4c92-afc1-8a56c268252c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "59bbbdae-2c64-44e5-9991-e962f9890568" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "6c6f2e1b-c3de-4884-8ca2-62cd70c72b63" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234511Z:6c6f2e1b-c3de-4884-8ca2-62cd70c72b63" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:45:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "48f77391-10ae-4c92-afc1-8a56c268252c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "8f72d5c5-d8cc-4df1-8a5e-bb19c1bb5314" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "6c4b3f14-ca4b-4302-a84a-e7214369edee" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234527Z:6c4b3f14-ca4b-4302-a84a-e7214369edee" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:45:27 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "48f77391-10ae-4c92-afc1-8a56c268252c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "eae19158-867d-4e79-aec0-6fdd1e8e10d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "95ffed99-16de-4133-aa01-de9ec307dce2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234543Z:95ffed99-16de-4133-aa01-de9ec307dce2" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:45:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "48f77391-10ae-4c92-afc1-8a56c268252c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "5d821d07-c4bb-4949-b1b4-7ce4311b8625" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "3dce3fa6-4553-4dbf-adab-42d50903c5b6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234559Z:3dce3fa6-4553-4dbf-adab-42d50903c5b6" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:45:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "48f77391-10ae-4c92-afc1-8a56c268252c" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134\",\r\n \"name\": \"onesdk134\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3c2be7c4-bd8d-403a-b37c-0ccfc29fdee1\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:44:12.45Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:56:05.68Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "818" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "7b261100-a603-4c98-b71c-63eacb450178" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "7d6a0fad-6ecc-45c8-b457-945389db8f96" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234614Z:7d6a0fad-6ecc-45c8-b457-945389db8f96" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:46:14 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "165b6644-9e27-49ba-b9d8-5bf0f4172152" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk731/databases/onesdk134' under resource group 'onesdk8006' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c9eee419-9043-43a3-88f4-6be39178c247" + ], + "x-ms-correlation-request-id": [ + "c9eee419-9043-43a3-88f4-6be39178c247" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234615Z:c9eee419-9043-43a3-88f4-6be39178c247" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:46:15 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/Servers/onesdk5677/databases/onesdk7653\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "296" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7918c77a-31b2-4d54-b3ab-665b9626145f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T16:46:17.017-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a7d08d51-a36b-445d-be7f-6a0c37d03357" + ], + "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": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "238d7ddc-6fcb-4d86-a2ab-84748162643b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234618Z:238d7ddc-6fcb-4d86-a2ab-84748162643b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:46:18 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7918c77a-31b2-4d54-b3ab-665b9626145f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3c06cf97-e8e7-46eb-895e-df764ff6c2f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "5bd4d744-c2a5-4e4a-99a4-f02cd11af22d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234618Z:5bd4d744-c2a5-4e4a-99a4-f02cd11af22d" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:46:18 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7918c77a-31b2-4d54-b3ab-665b9626145f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "968b658f-9849-4094-9152-e76ddc3c3847" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "75b1f2d4-c05a-4734-be9a-73a48c58a463" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234629Z:75b1f2d4-c05a-4734-be9a-73a48c58a463" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:46:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7918c77a-31b2-4d54-b3ab-665b9626145f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cf6fdd94-5508-4026-a26d-b3592ab09b79" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "1f714b86-684b-4b91-8739-699a8cb1227f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234645Z:1f714b86-684b-4b91-8739-699a8cb1227f" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:46:45 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7918c77a-31b2-4d54-b3ab-665b9626145f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d09a66cd-498e-4988-bf84-7c71b31b6169" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "7394cc88-4015-4997-a216-207e2806e44b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234701Z:7394cc88-4015-4997-a216-207e2806e44b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:47:01 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7918c77a-31b2-4d54-b3ab-665b9626145f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c18dd37d-d4bb-4042-b9e5-fc75965f61a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "f35109fe-2c27-4309-bc51-b5cd407d82cd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234717Z:f35109fe-2c27-4309-bc51-b5cd407d82cd" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:47:16 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7918c77a-31b2-4d54-b3ab-665b9626145f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "538ccd50-912f-48e5-9c19-2461de3368fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "cf8d41a1-178f-4d39-abe7-c311f740694e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234732Z:cf8d41a1-178f-4d39-abe7-c311f740694e" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:47:32 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7918c77a-31b2-4d54-b3ab-665b9626145f" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134\",\r\n \"name\": \"onesdk134\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ea4b45eb-28e6-4e07-b2b2-8066e88acd30\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:46:18.317Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:57:46.103Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "819" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "0bf4669f-bc55-4b7e-8fdf-adc8ca67aa9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "790596f5-2bd7-43e4-ae40-fbe1e184d3d4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234748Z:790596f5-2bd7-43e4-ae40-fbe1e184d3d4" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:47:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2240?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "21be9090-5a99-4ed9-9941-4c8a51007259" + ], + "x-ms-correlation-request-id": [ + "21be9090-5a99-4ed9-9941-4c8a51007259" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234751Z:21be9090-5a99-4ed9-9941-4c8a51007259" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:47:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "4832758b-91a7-4c45-bc08-0e19d8d37daa" + ], + "x-ms-correlation-request-id": [ + "4832758b-91a7-4c45-bc08-0e19d8d37daa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234751Z:4832758b-91a7-4c45-bc08-0e19d8d37daa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:47:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "09223fdc-62fc-4a5f-858a-2729ed267fd2" + ], + "x-ms-correlation-request-id": [ + "09223fdc-62fc-4a5f-858a-2729ed267fd2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234806Z:09223fdc-62fc-4a5f-858a-2729ed267fd2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:48:06 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "5662a4e5-d96c-4ded-9d7f-4ce9d4342036" + ], + "x-ms-correlation-request-id": [ + "5662a4e5-d96c-4ded-9d7f-4ce9d4342036" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234822Z:5662a4e5-d96c-4ded-9d7f-4ce9d4342036" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:48:22 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "cd91ecb1-590c-4b28-9325-08e7c9f4cc4b" + ], + "x-ms-correlation-request-id": [ + "cd91ecb1-590c-4b28-9325-08e7c9f4cc4b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234837Z:cd91ecb1-590c-4b28-9325-08e7c9f4cc4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:48:36 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "f77ef0a1-0c20-406c-b6d0-6149fa4ea8ec" + ], + "x-ms-correlation-request-id": [ + "f77ef0a1-0c20-406c-b6d0-6149fa4ea8ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234852Z:f77ef0a1-0c20-406c-b6d0-6149fa4ea8ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:48:52 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "9fd91ab0-9218-4496-884d-59db627f70c9" + ], + "x-ms-correlation-request-id": [ + "9fd91ab0-9218-4496-884d-59db627f70c9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234907Z:9fd91ab0-9218-4496-884d-59db627f70c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:49:06 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "15e049e4-1658-477d-bdf4-451f929c9738" + ], + "x-ms-correlation-request-id": [ + "15e049e4-1658-477d-bdf4-451f929c9738" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234923Z:15e049e4-1658-477d-bdf4-451f929c9738" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:49:23 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "d9ef9e7b-0800-49e4-88f6-3d52133a240d" + ], + "x-ms-correlation-request-id": [ + "d9ef9e7b-0800-49e4-88f6-3d52133a240d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234938Z:d9ef9e7b-0800-49e4-88f6-3d52133a240d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:49:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8006?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "14a58c9d-911a-4dda-a45b-f031ae23d4d5" + ], + "x-ms-correlation-request-id": [ + "14a58c9d-911a-4dda-a45b-f031ae23d4d5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234939Z:14a58c9d-911a-4dda-a45b-f031ae23d4d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:49:39 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "33114489-a779-48aa-b748-d401f12b6301" + ], + "x-ms-correlation-request-id": [ + "33114489-a779-48aa-b748-d401f12b6301" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234940Z:33114489-a779-48aa-b748-d401f12b6301" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:49:39 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "8d4b0a4a-1aa2-4cd7-a498-4ee1222d0260" + ], + "x-ms-correlation-request-id": [ + "8d4b0a4a-1aa2-4cd7-a498-4ee1222d0260" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T234955Z:8d4b0a4a-1aa2-4cd7-a498-4ee1222d0260" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:49:55 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "1e9b5059-4cc2-4b35-bb21-38d4db4b09ca" + ], + "x-ms-correlation-request-id": [ + "1e9b5059-4cc2-4b35-bb21-38d4db4b09ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235010Z:1e9b5059-4cc2-4b35-bb21-38d4db4b09ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:50:10 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "a573d832-a6e3-4449-8b46-7209790b0166" + ], + "x-ms-correlation-request-id": [ + "a573d832-a6e3-4449-8b46-7209790b0166" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235025Z:a573d832-a6e3-4449-8b46-7209790b0166" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:50:25 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "9b267f2a-5273-4d90-8808-b7fd732247c0" + ], + "x-ms-correlation-request-id": [ + "9b267f2a-5273-4d90-8808-b7fd732247c0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235041Z:9b267f2a-5273-4d90-8808-b7fd732247c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:50:40 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "b9274b45-731a-43a9-8643-bdf20bef812b" + ], + "x-ms-correlation-request-id": [ + "b9274b45-731a-43a9-8643-bdf20bef812b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235056Z:b9274b45-731a-43a9-8643-bdf20bef812b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:50:56 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "36a93a26-055b-41b8-bd3b-2ee164e456fd" + ], + "x-ms-correlation-request-id": [ + "36a93a26-055b-41b8-bd3b-2ee164e456fd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235111Z:36a93a26-055b-41b8-bd3b-2ee164e456fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:51:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "e560c77b-fc8a-40cd-8c89-8aab904d41eb" + ], + "x-ms-correlation-request-id": [ + "e560c77b-fc8a-40cd-8c89-8aab904d41eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235127Z:e560c77b-fc8a-40cd-8c89-8aab904d41eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:51:27 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateDatabaseCopy": [ + "onesdk2240", + "onesdk5677", + "onesdk7653", + "onesdk8006", + "onesdk731", + "onesdk134" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e", + "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b", + "Domain": "aztestorg114.ccsctp.net", + "User": "admin@aztestorg114.ccsctp.net" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopyV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopyV2.json new file mode 100644 index 000000000000..9f628dcfebb9 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopyV2.json @@ -0,0 +1,2726 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4523?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "2e3cdad2-c588-4cc2-8a35-4cadd848f767" + ], + "x-ms-correlation-request-id": [ + "2e3cdad2-c588-4cc2-8a35-4cadd848f767" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231559Z:2e3cdad2-c588-4cc2-8a35-4cadd848f767" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:15:59 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4523?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-request-id": [ + "a58ecef3-9c9d-4e1f-92c5-c8f7fc85d535" + ], + "x-ms-correlation-request-id": [ + "a58ecef3-9c9d-4e1f-92c5-c8f7fc85d535" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231714Z:a58ecef3-9c9d-4e1f-92c5-c8f7fc85d535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:17:14 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4523?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523\",\r\n \"name\": \"onesdk4523\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "181" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "8ec5ff77-7f06-4c41-baaa-84f9311bc792" + ], + "x-ms-correlation-request-id": [ + "8ec5ff77-7f06-4c41-baaa-84f9311bc792" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231559Z:8ec5ff77-7f06-4c41-baaa-84f9311bc792" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:15:59 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "19ef3393-4ead-49fd-919a-50bfe868506c" + ], + "x-ms-correlation-request-id": [ + "19ef3393-4ead-49fd-919a-50bfe868506c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231559Z:19ef3393-4ead-49fd-919a-50bfe868506c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:15:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4523/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:52a814ff-d08f-46d2-a0a0-976a10a2cf61" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "a4ca0945-6e3a-432a-9995-6d6263b4cf3a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231559Z:a4ca0945-6e3a-432a-9995-6d6263b4cf3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:15:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "c958e0fc-9378-4c1a-91d0-ac8685b72370" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1590' under resource group 'onesdk4523' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d5e63626-fbde-49dd-9ccd-048a74508e1d" + ], + "x-ms-correlation-request-id": [ + "d5e63626-fbde-49dd-9ccd-048a74508e1d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231600Z:d5e63626-fbde-49dd-9ccd-048a74508e1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:00 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4245f912-f050-41a4-9b86-ef59ba27014f" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "4e376f47-1b18-4ad4-b014-cc8c6fb1bb5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "07d3bc01-8532-4f73-80c4-bd820daf4595" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231605Z:07d3bc01-8532-4f73-80c4-bd820daf4595" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "cd92dd1e-a28d-4c36-8249-54dd682fd4e7" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "838aecc6-1578-412c-be46-3e8a94df4d20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "8c14738c-44c2-4476-a7a2-0c63b4d4a607" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231615Z:8c14738c-44c2-4476-a7a2-0c63b4d4a607" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:14 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3a631fe6-5d55-411e-8443-89932406db34" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "6549dc4e-7c6b-4738-b756-515889f6293a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "f1b92380-191b-4431-84ef-00b5da569ad9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231645Z:f1b92380-191b-4431-84ef-00b5da569ad9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:44 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7fe80767-2803-49f5-86d2-97ac48a87ded" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "67546973-d1a5-4c25-8542-b88ce9f503f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "12cd39d5-86e9-402e-82d5-d8c63e1d63eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231645Z:12cd39d5-86e9-402e-82d5-d8c63e1d63eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:44 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "21f9ef0c-224d-44eb-8a30-dceec3c854dd" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "af1789a0-69d5-43a8-8e83-428f40d39f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "415a517c-ef8b-4018-91b1-2938a2362d5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231714Z:415a517c-ef8b-4018-91b1-2938a2362d5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:17:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "d87ba924-5b74-44e9-a5be-f745a6efbb22" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "64311163-be29-4dc9-961a-5297a457d495" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "9adcf466-530d-4f68-b5e5-62bbcabb329e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231605Z:9adcf466-530d-4f68-b5e5-62bbcabb329e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4822?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0ODIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e716ba6f-92b8-48d8-80b7-286e43173e8f" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1590/databases/onesdk4822' under resource group 'onesdk4523' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ffbbec16-3c19-4672-9efb-6343917bd034" + ], + "x-ms-correlation-request-id": [ + "ffbbec16-3c19-4672-9efb-6343917bd034" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231605Z:ffbbec16-3c19-4672-9efb-6343917bd034" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:05 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4822?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0ODIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "131" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9bc27133-dcb9-463a-b6ca-b8d8383a5da8" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4822\",\r\n \"name\": \"onesdk4822\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"68f0ab71-5bec-4c9a-ba0a-fbb1820e4e29\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:16:07.313Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:17:07.313Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "779" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "2aaae3d7-773f-467e-bd39-8dc1e7a5ce1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "0c609ee8-e0e7-43a2-8ddb-bc2e04ebc8df" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231608Z:0c609ee8-e0e7-43a2-8ddb-bc2e04ebc8df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:08 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6804?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY4MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "349fd79a-fda3-40a6-b8d5-0e12cc34d915" + ], + "x-ms-correlation-request-id": [ + "349fd79a-fda3-40a6-b8d5-0e12cc34d915" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231609Z:349fd79a-fda3-40a6-b8d5-0e12cc34d915" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:08 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6804?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY4MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "b154fad4-b231-4a0a-a777-91b612b4fc1d" + ], + "x-ms-correlation-request-id": [ + "b154fad4-b231-4a0a-a777-91b612b4fc1d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231900Z:b154fad4-b231-4a0a-a777-91b612b4fc1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:18:59 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6804?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY4MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804\",\r\n \"name\": \"onesdk6804\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "181" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "c9e0b56e-42b7-4125-aa65-6c5ba9d04423" + ], + "x-ms-correlation-request-id": [ + "c9e0b56e-42b7-4125-aa65-6c5ba9d04423" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231609Z:c9e0b56e-42b7-4125-aa65-6c5ba9d04423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-request-id": [ + "33888015-25e4-409c-9f1e-5bf1fb8ce210" + ], + "x-ms-correlation-request-id": [ + "33888015-25e4-409c-9f1e-5bf1fb8ce210" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231609Z:33888015-25e4-409c-9f1e-5bf1fb8ce210" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6804/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:965e3ed4-04e2-4d76-8e2c-8b4dc3593d77" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "870201b7-0891-437d-b72a-b15258df4b47" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231610Z:870201b7-0891-437d-b72a-b15258df4b47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ccc8ede1-dbf1-4a64-a0a7-3863db0ca0ce" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9919' under resource group 'onesdk6804' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5bd0eb12-4ebb-46b0-80e4-2f70415f05ef" + ], + "x-ms-correlation-request-id": [ + "5bd0eb12-4ebb-46b0-80e4-2f70415f05ef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231610Z:5bd0eb12-4ebb-46b0-80e4-2f70415f05ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:09 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dade86c0-b510-4ae2-944c-2e439061a479" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919\",\r\n \"name\": \"onesdk9919\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9919.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "41fb31da-6cb2-45d6-8c6b-b39af6e58876" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "f2a2044a-0533-40e1-817c-df6b5f7d77d6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231645Z:f2a2044a-0533-40e1-817c-df6b5f7d77d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:44 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a58d4cfb-8527-4c91-80c0-9aecd1233ea1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919\",\r\n \"name\": \"onesdk9919\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9919.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "f5acbe13-d55f-4cd4-a4e8-5eff5caeab19" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "a1b51a4f-37c0-47a0-9469-d767b68cae47" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231614Z:a1b51a4f-37c0-47a0-9469-d767b68cae47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:14 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0NTc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "f104dd7d-0abe-4efb-a030-ffda52b1d9db" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1590/databases/onesdk4579' under resource group 'onesdk4523' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "dad3eae5-aff9-4b78-a3cb-c780f8c9bec5" + ], + "x-ms-correlation-request-id": [ + "dad3eae5-aff9-4b78-a3cb-c780f8c9bec5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231614Z:dad3eae5-aff9-4b78-a3cb-c780f8c9bec5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:14 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0NTc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/Servers/onesdk1590/databases/onesdk4822\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "300" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b76acfec-b60d-4cd4-9920-96abbbe400d9" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:18.761Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "42961d31-3191-455a-b3e4-a2d4f41c9e52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "c7dce495-edc5-4f3c-a8c0-7705a2f1202b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231619Z:c7dce495-edc5-4f3c-a8c0-7705a2f1202b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:18 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvODM1OWQ3NTMtYTU2My00NmNiLWIwNDMtZmY4ZTE0ZjkzNzYzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b76acfec-b60d-4cd4-9920-96abbbe400d9" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:15.667Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "89518b07-90ca-4491-a0ff-4812cbb9e914" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "32461292-a7fd-4abb-80cf-f45a7f3d4b0f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231619Z:32461292-a7fd-4abb-80cf-f45a7f3d4b0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:18 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvODM1OWQ3NTMtYTU2My00NmNiLWIwNDMtZmY4ZTE0ZjkzNzYzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b76acfec-b60d-4cd4-9920-96abbbe400d9" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:15.667Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f064093a-a7b1-4869-b121-3bad3484240a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "535e7b57-0cd8-4fba-9194-ca8d198dfce7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231629Z:535e7b57-0cd8-4fba-9194-ca8d198dfce7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:29 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvODM1OWQ3NTMtYTU2My00NmNiLWIwNDMtZmY4ZTE0ZjkzNzYzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b76acfec-b60d-4cd4-9920-96abbbe400d9" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579\",\r\n \"name\": \"onesdk4579\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"e74cf823-6738-4a4c-9c31-b4c4c1c0a394\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:16:32.017Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:17:32.017Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "769" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "0798eba4-5319-408f-8c79-a6609e309d9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "c2f22379-3bd6-47e1-a80e-6f56d22ff18d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231645Z:c2f22379-3bd6-47e1-a80e-6f56d22ff18d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:44 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5L2RhdGFiYXNlcy9vbmVzZGs0NTc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4ded81a7-a95c-4131-b380-b51250df4264" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9919/databases/onesdk4579' under resource group 'onesdk6804' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bc716c4e-9319-472f-87ae-ad09d25d99ac" + ], + "x-ms-correlation-request-id": [ + "bc716c4e-9319-472f-87ae-ad09d25d99ac" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231645Z:bc716c4e-9319-472f-87ae-ad09d25d99ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:44 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5L2RhdGFiYXNlcy9vbmVzZGs0NTc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/Servers/onesdk1590/databases/onesdk4822\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "300" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0b2db582-43c6-4f6a-aceb-5178a013a87b" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:47.853Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b203c398-5b01-4148-adda-ea43a0ef3cdf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "f585b8d5-59c1-48e2-af25-b3643ac5efe4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231648Z:f585b8d5-59c1-48e2-af25-b3643ac5efe4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:47 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5L2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvOTU4YmU0NjQtZDVmYy00NmFiLTk1ODMtZDZjNmQ5NjE3YmFmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0b2db582-43c6-4f6a-aceb-5178a013a87b" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:46.057Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d2921e7f-5f6b-407f-af7a-5a198c3c83b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "952c414f-1bd3-484b-80c4-3f34392e6445" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231648Z:952c414f-1bd3-484b-80c4-3f34392e6445" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:47 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5L2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvOTU4YmU0NjQtZDVmYy00NmFiLTk1ODMtZDZjNmQ5NjE3YmFmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0b2db582-43c6-4f6a-aceb-5178a013a87b" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:46.057Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "11a94219-2360-4e72-9a6a-07d49fee4116" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "1e412b53-3412-44e1-b3ee-866dd797c7b1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231658Z:1e412b53-3412-44e1-b3ee-866dd797c7b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:16:57 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5L2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvOTU4YmU0NjQtZDVmYy00NmFiLTk1ODMtZDZjNmQ5NjE3YmFmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0b2db582-43c6-4f6a-aceb-5178a013a87b" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579\",\r\n \"name\": \"onesdk4579\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f261661c-54c8-4b43-9704-52c0c54b8601\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:16:59.807Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:17:59.807Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "769" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "102e38a4-be92-4b8f-a337-dd35a59a5413" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "3ef6b14a-ba7b-4a57-b914-e089987f2ac0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231714Z:3ef6b14a-ba7b-4a57-b914-e089987f2ac0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:17:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4523?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-request-id": [ + "1112b9e2-fa09-45e5-acb5-de6f1fa2f6e8" + ], + "x-ms-correlation-request-id": [ + "1112b9e2-fa09-45e5-acb5-de6f1fa2f6e8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231714Z:1112b9e2-fa09-45e5-acb5-de6f1fa2f6e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:17:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-request-id": [ + "1afbaaa0-9f24-47a6-abdf-0dfb7d74c20e" + ], + "x-ms-correlation-request-id": [ + "1afbaaa0-9f24-47a6-abdf-0dfb7d74c20e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231714Z:1afbaaa0-9f24-47a6-abdf-0dfb7d74c20e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:17:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-request-id": [ + "362ebccc-02c7-4203-9b29-a6271eeb19b3" + ], + "x-ms-correlation-request-id": [ + "362ebccc-02c7-4203-9b29-a6271eeb19b3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231729Z:362ebccc-02c7-4203-9b29-a6271eeb19b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:17:29 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-request-id": [ + "168d6187-bbcd-413c-8dc6-ffe3c8191d56" + ], + "x-ms-correlation-request-id": [ + "168d6187-bbcd-413c-8dc6-ffe3c8191d56" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231744Z:168d6187-bbcd-413c-8dc6-ffe3c8191d56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:17:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-request-id": [ + "37f64986-185d-4c80-b535-1d981367f29c" + ], + "x-ms-correlation-request-id": [ + "37f64986-185d-4c80-b535-1d981367f29c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231759Z:37f64986-185d-4c80-b535-1d981367f29c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:17:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "02e7c140-16cf-46ea-9d5c-1608e7b1e901" + ], + "x-ms-correlation-request-id": [ + "02e7c140-16cf-46ea-9d5c-1608e7b1e901" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231814Z:02e7c140-16cf-46ea-9d5c-1608e7b1e901" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:18:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "31e6758e-d673-4863-bd02-9d141cebc596" + ], + "x-ms-correlation-request-id": [ + "31e6758e-d673-4863-bd02-9d141cebc596" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231830Z:31e6758e-d673-4863-bd02-9d141cebc596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:18:30 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "fd4a3d11-c8ca-4ac0-b738-621e11d14e38" + ], + "x-ms-correlation-request-id": [ + "fd4a3d11-c8ca-4ac0-b738-621e11d14e38" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231845Z:fd4a3d11-c8ca-4ac0-b738-621e11d14e38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:18:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-request-id": [ + "e6748ebb-d3af-4861-8905-1d7eddb9547e" + ], + "x-ms-correlation-request-id": [ + "e6748ebb-d3af-4861-8905-1d7eddb9547e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231900Z:e6748ebb-d3af-4861-8905-1d7eddb9547e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:18:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6804?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY4MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "9fa65c69-ec64-4d68-acb8-dab6a4e8a8c7" + ], + "x-ms-correlation-request-id": [ + "9fa65c69-ec64-4d68-acb8-dab6a4e8a8c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231900Z:9fa65c69-ec64-4d68-acb8-dab6a4e8a8c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:18:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "ad024470-c74e-466e-948c-8b6857432ab2" + ], + "x-ms-correlation-request-id": [ + "ad024470-c74e-466e-948c-8b6857432ab2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231900Z:ad024470-c74e-466e-948c-8b6857432ab2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:18:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "0d2ea5b5-d78a-43b5-927e-78b302bcfa70" + ], + "x-ms-correlation-request-id": [ + "0d2ea5b5-d78a-43b5-927e-78b302bcfa70" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231915Z:0d2ea5b5-d78a-43b5-927e-78b302bcfa70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:19:15 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "6ef64f29-62ea-485a-90d3-039663049620" + ], + "x-ms-correlation-request-id": [ + "6ef64f29-62ea-485a-90d3-039663049620" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231930Z:6ef64f29-62ea-485a-90d3-039663049620" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:19:30 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "19ba1c63-3b2b-4327-8691-98300efb6449" + ], + "x-ms-correlation-request-id": [ + "19ba1c63-3b2b-4327-8691-98300efb6449" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231946Z:19ba1c63-3b2b-4327-8691-98300efb6449" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:19:45 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "40bc8830-2cd2-48b8-a1f2-a4ef28a051b0" + ], + "x-ms-correlation-request-id": [ + "40bc8830-2cd2-48b8-a1f2-a4ef28a051b0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232001Z:40bc8830-2cd2-48b8-a1f2-a4ef28a051b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:20:00 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-request-id": [ + "ce32577e-4a60-4f10-962d-576837d0350f" + ], + "x-ms-correlation-request-id": [ + "ce32577e-4a60-4f10-962d-576837d0350f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232016Z:ce32577e-4a60-4f10-962d-576837d0350f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:20:16 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "2ff61516-4319-4328-8dfd-34d84afee43a" + ], + "x-ms-correlation-request-id": [ + "2ff61516-4319-4328-8dfd-34d84afee43a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232031Z:2ff61516-4319-4328-8dfd-34d84afee43a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:20:30 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "d13942a8-3818-49ed-ad61-fce3973a14ee" + ], + "x-ms-correlation-request-id": [ + "d13942a8-3818-49ed-ad61-fce3973a14ee" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232046Z:d13942a8-3818-49ed-ad61-fce3973a14ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:20:46 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateDatabaseCopyV2": [ + "onesdk4523", + "onesdk1590", + "onesdk4822", + "onesdk6804", + "onesdk9919", + "onesdk4579" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e", + "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b", + "Domain": "aztestorg114.ccsctp.net", + "User": "admin@aztestorg114.ccsctp.net" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabase.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabase.json new file mode 100644 index 000000000000..a4c576ae3a83 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabase.json @@ -0,0 +1,2809 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8442?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "32be6e77-13e6-41c9-b03b-a321fcb0ee7d" + ], + "x-ms-correlation-request-id": [ + "32be6e77-13e6-41c9-b03b-a321fcb0ee7d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230008Z:32be6e77-13e6-41c9-b03b-a321fcb0ee7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:00:08 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8442?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-request-id": [ + "58ab793c-a639-42ff-8d12-b2b34cf3d4cd" + ], + "x-ms-correlation-request-id": [ + "58ab793c-a639-42ff-8d12-b2b34cf3d4cd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230507Z:58ab793c-a639-42ff-8d12-b2b34cf3d4cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:05:07 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8442?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "34" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442\",\r\n \"name\": \"onesdk8442\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "687c1bdf-57a7-4db4-b2b4-eff5afd7da26" + ], + "x-ms-correlation-request-id": [ + "687c1bdf-57a7-4db4-b2b4-eff5afd7da26" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230009Z:687c1bdf-57a7-4db4-b2b4-eff5afd7da26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:00:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "02afda32-6f50-465a-8a19-8b68b13b1f7d" + ], + "x-ms-correlation-request-id": [ + "02afda32-6f50-465a-8a19-8b68b13b1f7d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230009Z:02afda32-6f50-465a-8a19-8b68b13b1f7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:00:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8442/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:e3554189-0bb9-470a-9dfa-f53b43da32e9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "337616f9-fb63-444d-ae60-7e331e41df77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230010Z:337616f9-fb63-444d-ae60-7e331e41df77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:00:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7ce7fa2f-aca4-406b-8d7c-0ea95a829552" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1554' under resource group 'onesdk8442' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "944d5d33-3201-422d-8551-015825ba4010" + ], + "x-ms-correlation-request-id": [ + "944d5d33-3201-422d-8551-015825ba4010" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230010Z:944d5d33-3201-422d-8551-015825ba4010" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:00:10 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3d7314b4-ac8e-4e1c-a969-e639debb6001" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554\",\r\n \"name\": \"onesdk1554\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1554.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "22b6a39b-0ffd-44b1-8439-f17ba60daa04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "b7541179-525e-42fd-a765-20ad8a8ff50e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230113Z:b7541179-525e-42fd-a765-20ad8a8ff50e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:01:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "be6b2a94-93a4-44cf-9dbf-14dd2e868f0f" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554\",\r\n \"name\": \"onesdk1554\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1554.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "50756dd7-fa21-45fa-afc0-fa7d8b2eb826" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "8ad598b0-f3d6-4ffc-b997-c0951a8f4ddd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230113Z:8ad598b0-f3d6-4ffc-b997-c0951a8f4ddd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:01:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "15c63060-b584-424d-a4de-3513c8ad8efe" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1554/databases/onesdk7221' under resource group 'onesdk8442' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "095493ae-eff1-4904-b4c9-43695e062bc5" + ], + "x-ms-correlation-request-id": [ + "095493ae-eff1-4904-b4c9-43695e062bc5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230113Z:095493ae-eff1-4904-b4c9-43695e062bc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:01:13 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "126" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e10f324a-4744-4ca8-8c65-af093f8f8d74" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T16:01:15.026-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "e27f5f05-19e4-45d5-8b4b-1fd97e818c24" + ], + "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": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "ba560370-0fe5-4422-8559-d83597f0374a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230116Z:ba560370-0fe5-4422-8559-d83597f0374a" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:01:15 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvZTI3ZjVmMDUtMTllNC00NWQ1LThiNGItMWZkOTdlODE4YzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e10f324a-4744-4ca8-8c65-af093f8f8d74" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:01:14.997Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "b80cdd70-efa1-43a7-aac9-0b546590697c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "cf273130-03b9-471f-8afd-fc8c3b4270b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230117Z:cf273130-03b9-471f-8afd-fc8c3b4270b2" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:01:17 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvZTI3ZjVmMDUtMTllNC00NWQ1LThiNGItMWZkOTdlODE4YzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e10f324a-4744-4ca8-8c65-af093f8f8d74" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:01:14.997Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "aee04877-fa91-4df8-b681-dc84604d48a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "df650651-9dd7-48d3-bfb0-1fc641f27a6c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230148Z:df650651-9dd7-48d3-bfb0-1fc641f27a6c" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:01:47 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvZTI3ZjVmMDUtMTllNC00NWQ1LThiNGItMWZkOTdlODE4YzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e10f324a-4744-4ca8-8c65-af093f8f8d74" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:01:14.997Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "2de456ad-4377-4041-abc7-0e8425c35e62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "e8543c10-73c8-44d2-abd4-5a49c703956e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230203Z:e8543c10-73c8-44d2-abd4-5a49c703956e" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:02:03 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvZTI3ZjVmMDUtMTllNC00NWQ1LThiNGItMWZkOTdlODE4YzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e10f324a-4744-4ca8-8c65-af093f8f8d74" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:01:14.997Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "f4004eab-fa0f-433f-8819-504fe3279b18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "61500e9c-ea09-44e4-ac9d-e3cc5b443dc1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230219Z:61500e9c-ea09-44e4-ac9d-e3cc5b443dc1" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:02:19 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvZTI3ZjVmMDUtMTllNC00NWQ1LThiNGItMWZkOTdlODE4YzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e10f324a-4744-4ca8-8c65-af093f8f8d74" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221\",\r\n \"name\": \"onesdk7221\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3a4190e4-5628-4d7e-8b05-a1fb5fd2ce4a\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:01:15.467Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:12:25.68Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "820" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "9591de0b-7983-4e30-82ef-b99879b77f71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "70ef7923-824e-416a-8d46-39b12f4f38ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230235Z:70ef7923-824e-416a-8d46-39b12f4f38ca" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:02:35 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3809?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "a823b776-7302-46f2-99c1-06d88db2c18b" + ], + "x-ms-correlation-request-id": [ + "a823b776-7302-46f2-99c1-06d88db2c18b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230235Z:a823b776-7302-46f2-99c1-06d88db2c18b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:02:35 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3809?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "35caaba6-f362-438d-8e18-8d2d842f51e6" + ], + "x-ms-correlation-request-id": [ + "35caaba6-f362-438d-8e18-8d2d842f51e6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230657Z:35caaba6-f362-438d-8e18-8d2d842f51e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:06:57 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3809?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "34" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809\",\r\n \"name\": \"onesdk3809\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "4b2c8298-5dad-42ac-8ebe-9265cf393529" + ], + "x-ms-correlation-request-id": [ + "4b2c8298-5dad-42ac-8ebe-9265cf393529" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230237Z:4b2c8298-5dad-42ac-8ebe-9265cf393529" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:02:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "8e644bfc-be95-48d9-bae0-32eecb4433ea" + ], + "x-ms-correlation-request-id": [ + "8e644bfc-be95-48d9-bae0-32eecb4433ea" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230237Z:8e644bfc-be95-48d9-bae0-32eecb4433ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:02:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3809/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:fc8d85c4-c5b7-4169-87cb-5bae2a229781" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "1acfb3be-fb10-4a32-b193-6baa57fe0fb3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230237Z:1acfb3be-fb10-4a32-b193-6baa57fe0fb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:02:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "65456cc7-a488-459c-8c71-3207b3bc9f5d" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1097' under resource group 'onesdk3809' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6cc6fdd2-5bca-49c9-82fa-2b1b54c65b46" + ], + "x-ms-correlation-request-id": [ + "6cc6fdd2-5bca-49c9-82fa-2b1b54c65b46" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230237Z:6cc6fdd2-5bca-49c9-82fa-2b1b54c65b46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:02:37 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0790701b-9182-400c-97f8-005ca3cdb69f" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097\",\r\n \"name\": \"onesdk1097\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1097.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "457ca558-1668-4861-aa44-6ccc3076b33f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "1001a21b-d1e1-4907-afd3-097851bdb874" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230333Z:1001a21b-d1e1-4907-afd3-097851bdb874" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:03:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5af9ba0c-3332-4f51-ad38-40c509e32d57" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097\",\r\n \"name\": \"onesdk1097\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1097.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c132204b-d55d-4e27-9573-c026ebb7d5d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "054292dd-9468-4ef8-9605-39065ea1d391" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230332Z:054292dd-9468-4ef8-9605-39065ea1d391" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:03:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "79e1e302-a0d5-4e6f-8fd9-a3a0593e0f96" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1097/databases/onesdk7221' under resource group 'onesdk3809' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "832803de-cbef-4c65-9e35-8f3d5c3f140b" + ], + "x-ms-correlation-request-id": [ + "832803de-cbef-4c65-9e35-8f3d5c3f140b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230333Z:832803de-cbef-4c65-9e35-8f3d5c3f140b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:03:32 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/Servers/onesdk1554/databases/onesdk7221\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "301" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T16:03:34.364-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a036d120-d76b-4d24-9eb4-12f58532cf7f" + ], + "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": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "ecdc6fab-94a6-4159-8758-9d5eeeaa29f6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230335Z:ecdc6fab-94a6-4159-8758-9d5eeeaa29f6" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:03:35 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b1cf21fc-1b26-4cd7-a4ef-1b711ec799d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "3a989935-bb52-4780-82cc-fa06e0d17499" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230336Z:3a989935-bb52-4780-82cc-fa06e0d17499" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:03:36 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "72ddc271-ea85-4f66-b816-88a28b725ad3" + ], + "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": [ + "eed22f98-ef49-438d-bf17-17be51b043e3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230347Z:eed22f98-ef49-438d-bf17-17be51b043e3" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:03:47 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ec91fecc-5e1d-4082-b36f-9ded8e36c65f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "7b168eb8-f9e0-4a93-9704-2be856dafa28" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230402Z:7b168eb8-f9e0-4a93-9704-2be856dafa28" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:04:02 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "15e20af5-77b5-4b48-b86c-8d2c8212e2ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "82470e1f-e1c6-4909-886e-8f7c5991add0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230418Z:82470e1f-e1c6-4909-886e-8f7c5991add0" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:04:18 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "055bf981-d206-4993-8686-e685a5b95b6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "ab9f1d6d-6935-4ea8-8fb1-1d0b0c3f6dff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230434Z:ab9f1d6d-6935-4ea8-8fb1-1d0b0c3f6dff" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:04:34 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "8dccc06f-e3ca-4937-a60f-88585b14176a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "057e47db-10eb-49c4-82a2-ccc5c7940be7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230450Z:057e47db-10eb-49c4-82a2-ccc5c7940be7" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:04:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221\",\r\n \"name\": \"onesdk7221\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"99d715f2-c2f2-4184-b396-0c778f268ecf\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:03:35.693Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:14:48.617Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "2aa7c0d2-d5ed-4833-8b01-cbb5d5b2c7c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "0113fb36-01f7-48c9-b3ff-9448fa201bf9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230505Z:0113fb36-01f7-48c9-b3ff-9448fa201bf9" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:05:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0dd0d935-866a-447b-9a4b-6982edc2c19f" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097\",\r\n \"name\": \"onesdk1097\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1097.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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 }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "479" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "2c9f68d4-fe0e-40ff-b55e-7f05bf396e9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "83dcc184-fddb-42aa-a5bd-8c3b8faa4672" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230506Z:83dcc184-fddb-42aa-a5bd-8c3b8faa4672" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:05:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9dc56cab-b46d-4a11-b962-1c361cd42c3e" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/replicationLinks/ce83958e-2e52-47bc-9e4f-7a28f4096437\",\r\n \"name\": \"ce83958e-2e52-47bc-9e4f-7a28f4096437\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk1097\",\r\n \"partnerDatabase\": \"onesdk7221\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:04:15.87\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "e9844ba1-4db7-4d6a-b192-2fa8e04938fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "ff439b6a-0c56-4df1-acad-db029b26aa61" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230507Z:ff439b6a-0c56-4df1-acad-db029b26aa61" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:05:06 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8442?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-request-id": [ + "31d1e875-0e35-4ce4-94b7-063aa4732eed" + ], + "x-ms-correlation-request-id": [ + "31d1e875-0e35-4ce4-94b7-063aa4732eed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230509Z:31d1e875-0e35-4ce4-94b7-063aa4732eed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:05:09 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-request-id": [ + "00219d30-6aa2-4939-b8f7-d0cb74e8fbcd" + ], + "x-ms-correlation-request-id": [ + "00219d30-6aa2-4939-b8f7-d0cb74e8fbcd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230509Z:00219d30-6aa2-4939-b8f7-d0cb74e8fbcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:05:09 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-request-id": [ + "c2098aa3-5fbe-45ec-bd38-7b173502dce6" + ], + "x-ms-correlation-request-id": [ + "c2098aa3-5fbe-45ec-bd38-7b173502dce6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230525Z:c2098aa3-5fbe-45ec-bd38-7b173502dce6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:05:25 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-request-id": [ + "da07c927-fc34-46a9-a50f-8cb5ef0424cf" + ], + "x-ms-correlation-request-id": [ + "da07c927-fc34-46a9-a50f-8cb5ef0424cf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230540Z:da07c927-fc34-46a9-a50f-8cb5ef0424cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:05:39 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-request-id": [ + "4f71f8db-552c-4f89-a964-5cdca1a9d62b" + ], + "x-ms-correlation-request-id": [ + "4f71f8db-552c-4f89-a964-5cdca1a9d62b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230555Z:4f71f8db-552c-4f89-a964-5cdca1a9d62b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:05:54 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "cd5823e6-9963-47c6-aa42-87e44b26fc7e" + ], + "x-ms-correlation-request-id": [ + "cd5823e6-9963-47c6-aa42-87e44b26fc7e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230611Z:cd5823e6-9963-47c6-aa42-87e44b26fc7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:06:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "a4b49b2b-d3fe-4c45-94a7-9309e34e2039" + ], + "x-ms-correlation-request-id": [ + "a4b49b2b-d3fe-4c45-94a7-9309e34e2039" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230626Z:a4b49b2b-d3fe-4c45-94a7-9309e34e2039" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:06:26 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "faaf4d53-44be-4658-8e38-e170d74c5d18" + ], + "x-ms-correlation-request-id": [ + "faaf4d53-44be-4658-8e38-e170d74c5d18" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230641Z:faaf4d53-44be-4658-8e38-e170d74c5d18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:06:41 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-request-id": [ + "249579be-9a88-4bfd-b19b-94fe9de6bf54" + ], + "x-ms-correlation-request-id": [ + "249579be-9a88-4bfd-b19b-94fe9de6bf54" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230656Z:249579be-9a88-4bfd-b19b-94fe9de6bf54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:06:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3809?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "cdfd66d6-e2a8-4f7b-a31a-5cd8147186ad" + ], + "x-ms-correlation-request-id": [ + "cdfd66d6-e2a8-4f7b-a31a-5cd8147186ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230658Z:cdfd66d6-e2a8-4f7b-a31a-5cd8147186ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:06:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "fc549e2c-0def-4d43-91cd-cb30d9e28a40" + ], + "x-ms-correlation-request-id": [ + "fc549e2c-0def-4d43-91cd-cb30d9e28a40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230659Z:fc549e2c-0def-4d43-91cd-cb30d9e28a40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:06:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "ba29384a-9eb3-49c2-b79f-c5c91f6221e5" + ], + "x-ms-correlation-request-id": [ + "ba29384a-9eb3-49c2-b79f-c5c91f6221e5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230714Z:ba29384a-9eb3-49c2-b79f-c5c91f6221e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:07:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "a180a4b1-a734-4e15-b6da-cca45578a36b" + ], + "x-ms-correlation-request-id": [ + "a180a4b1-a734-4e15-b6da-cca45578a36b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230729Z:a180a4b1-a734-4e15-b6da-cca45578a36b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:07:29 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "b6af2d73-0b60-4b1e-89ef-20c6c712094d" + ], + "x-ms-correlation-request-id": [ + "b6af2d73-0b60-4b1e-89ef-20c6c712094d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230744Z:b6af2d73-0b60-4b1e-89ef-20c6c712094d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:07:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-request-id": [ + "aaa021c6-97c5-4ad7-9c0f-e0f86b02804a" + ], + "x-ms-correlation-request-id": [ + "aaa021c6-97c5-4ad7-9c0f-e0f86b02804a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230800Z:aaa021c6-97c5-4ad7-9c0f-e0f86b02804a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:07:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "a463967e-16fc-46b5-b299-c0a6fd72ddec" + ], + "x-ms-correlation-request-id": [ + "a463967e-16fc-46b5-b299-c0a6fd72ddec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230815Z:a463967e-16fc-46b5-b299-c0a6fd72ddec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:08:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "607a6ce4-4d43-4201-b39a-bc0082418d4e" + ], + "x-ms-correlation-request-id": [ + "607a6ce4-4d43-4201-b39a-bc0082418d4e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230830Z:607a6ce4-4d43-4201-b39a-bc0082418d4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:08:30 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateSecondaryDatabase": [ + "onesdk8442", + "onesdk1554", + "onesdk7221", + "onesdk3809", + "onesdk1097" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e", + "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b", + "Domain": "aztestorg114.ccsctp.net", + "User": "admin@aztestorg114.ccsctp.net" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabaseV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabaseV2.json new file mode 100644 index 000000000000..df1e95e3e358 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabaseV2.json @@ -0,0 +1,2443 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9823?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "1d1e08f4-c37a-43f1-9255-a295469162eb" + ], + "x-ms-correlation-request-id": [ + "1d1e08f4-c37a-43f1-9255-a295469162eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230912Z:1d1e08f4-c37a-43f1-9255-a295469162eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:11 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9823?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-request-id": [ + "7dc51050-ff8b-4355-807a-8802c58b3e76" + ], + "x-ms-correlation-request-id": [ + "7dc51050-ff8b-4355-807a-8802c58b3e76" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231029Z:7dc51050-ff8b-4355-807a-8802c58b3e76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:10:29 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9823?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823\",\r\n \"name\": \"onesdk9823\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "181" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "148057bf-2fc5-4c73-bd34-e9c98d2d94ea" + ], + "x-ms-correlation-request-id": [ + "148057bf-2fc5-4c73-bd34-e9c98d2d94ea" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230912Z:148057bf-2fc5-4c73-bd34-e9c98d2d94ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:11 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "81c722be-1dec-458f-99c6-313ee849192a" + ], + "x-ms-correlation-request-id": [ + "81c722be-1dec-458f-99c6-313ee849192a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230912Z:81c722be-1dec-458f-99c6-313ee849192a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9823/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:b1b97ef4-4db2-4077-be58-e8c81f46caa3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "a8c37494-5dd1-4677-95ab-00b11d8aa905" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230912Z:a8c37494-5dd1-4677-95ab-00b11d8aa905" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "fe6ff0bf-9368-4d01-9d9a-0d403ccb78b9" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5473' under resource group 'onesdk9823' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2ca33ea1-73f0-4b26-b268-a687924c6a78" + ], + "x-ms-correlation-request-id": [ + "2ca33ea1-73f0-4b26-b268-a687924c6a78" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230913Z:2ca33ea1-73f0-4b26-b268-a687924c6a78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:13 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0f397b16-3be6-471b-aee7-a2ddb0b997ef" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473\",\r\n \"name\": \"onesdk5473\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5473.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "ca777773-8d49-48a8-b7f2-1b785ad45dbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "c3df51fd-7f9a-4cab-a17c-d722c27e2a75" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230918Z:c3df51fd-7f9a-4cab-a17c-d722c27e2a75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5d6d32b9-baee-42da-984e-f59a57bc2a9a" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473\",\r\n \"name\": \"onesdk5473\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5473.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "93695d4e-4123-4c6d-b104-2c88a86cc4fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "f4546bcf-f9e7-406a-800b-f9db02abf150" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230918Z:f4546bcf-f9e7-406a-800b-f9db02abf150" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczL2RhdGFiYXNlcy9vbmVzZGs5ODg1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "96f219e9-33dd-430e-abed-15e760d4dbbe" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5473/databases/onesdk9885' under resource group 'onesdk9823' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1f142c96-ed51-4526-811a-cb03433f58fb" + ], + "x-ms-correlation-request-id": [ + "1f142c96-ed51-4526-811a-cb03433f58fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230918Z:1f142c96-ed51-4526-811a-cb03433f58fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:17 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczL2RhdGFiYXNlcy9vbmVzZGs5ODg1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "130" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5972e20b-538e-473a-ae87-07bbd6b02a60" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-19T23:09:19.582Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "9c8ad148-5e68-49dd-be68-1ca327b308cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "2f131b16-53e6-4c0e-b9fb-c359b66b27bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230920Z:2f131b16-53e6-4c0e-b9fb-c359b66b27bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:19 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/operationResults/7ec194e6-9797-4351-9359-ece9b7a7f1f9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/operationResults/7ec194e6-9797-4351-9359-ece9b7a7f1f9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczL2RhdGFiYXNlcy9vbmVzZGs5ODg1L29wZXJhdGlvblJlc3VsdHMvN2VjMTk0ZTYtOTc5Ny00MzUxLTkzNTktZWNlOWI3YTdmMWY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5972e20b-538e-473a-ae87-07bbd6b02a60" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-19T23:09:19.02Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "cd9987a2-dcc2-4251-8f11-419e1fce5ed9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "2a167d17-a217-40af-bc2e-451d44d2bcba" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230920Z:2a167d17-a217-40af-bc2e-451d44d2bcba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:19 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/operationResults/7ec194e6-9797-4351-9359-ece9b7a7f1f9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/operationResults/7ec194e6-9797-4351-9359-ece9b7a7f1f9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczL2RhdGFiYXNlcy9vbmVzZGs5ODg1L29wZXJhdGlvblJlc3VsdHMvN2VjMTk0ZTYtOTc5Ny00MzUxLTkzNTktZWNlOWI3YTdmMWY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5972e20b-538e-473a-ae87-07bbd6b02a60" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885\",\r\n \"name\": \"onesdk9885\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3f45756a-6fb6-4b80-8290-0cff30354587\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:09:19.37Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:10:19.37Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "776" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "53f5b1ce-e3c2-425c-898c-ab5d739e6544" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "28f5da9a-f9bc-47dc-b9e0-db86ba08e48c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230950Z:28f5da9a-f9bc-47dc-b9e0-db86ba08e48c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:49 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3550?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "d4bfa762-aca6-4fd2-9709-e5aad39de76b" + ], + "x-ms-correlation-request-id": [ + "d4bfa762-aca6-4fd2-9709-e5aad39de76b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230950Z:d4bfa762-aca6-4fd2-9709-e5aad39de76b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:50 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3550?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "aa854ba6-22b3-472b-8d21-cf9a1c5c7bb3" + ], + "x-ms-correlation-request-id": [ + "aa854ba6-22b3-472b-8d21-cf9a1c5c7bb3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231215Z:aa854ba6-22b3-472b-8d21-cf9a1c5c7bb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:12:15 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3550?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550\",\r\n \"name\": \"onesdk3550\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "181" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "203b5757-92f2-42bf-a01a-e56e0069ffca" + ], + "x-ms-correlation-request-id": [ + "203b5757-92f2-42bf-a01a-e56e0069ffca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230951Z:203b5757-92f2-42bf-a01a-e56e0069ffca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:50 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-request-id": [ + "3d1a4bb7-f252-46d4-a00d-18157c763795" + ], + "x-ms-correlation-request-id": [ + "3d1a4bb7-f252-46d4-a00d-18157c763795" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230951Z:3d1a4bb7-f252-46d4-a00d-18157c763795" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3550/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:9388178e-9538-41ac-b076-e4f8cb525a17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "2be25cfb-67ad-4087-bafa-9867c6895001" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230951Z:2be25cfb-67ad-4087-bafa-9867c6895001" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "265bc188-7b60-44e9-996e-f897a551eae6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6381' under resource group 'onesdk3550' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "0d5cd3d4-0ea3-4bc1-bd45-ba159ad8656d" + ], + "x-ms-correlation-request-id": [ + "0d5cd3d4-0ea3-4bc1-bd45-ba159ad8656d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230951Z:0d5cd3d4-0ea3-4bc1-bd45-ba159ad8656d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:50 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "6c0df943-ffa3-4149-b88a-c3655b7101e2" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381\",\r\n \"name\": \"onesdk6381\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6381.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "64e1ef2e-e7ff-424f-8189-9623f95857a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "0f9d242b-4865-4d87-a44c-71fabff23834" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230958Z:0f9d242b-4865-4d87-a44c-71fabff23834" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:58 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "fdae9c9b-9ed7-4740-97df-7cb498819ea8" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381\",\r\n \"name\": \"onesdk6381\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6381.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "75651036-45d3-452b-9924-5045f1229dec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "2dbc172c-6df7-4d7a-9d27-78b98ff05770" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230957Z:2dbc172c-6df7-4d7a-9d27-78b98ff05770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:56 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxL2RhdGFiYXNlcy9vbmVzZGs5ODg1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3ca07147-5edd-4c01-a954-3588ce19b4c9" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6381/databases/onesdk9885' under resource group 'onesdk3550' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e11200e7-eb04-4af8-a2e5-c203e62a92ab" + ], + "x-ms-correlation-request-id": [ + "e11200e7-eb04-4af8-a2e5-c203e62a92ab" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T230957Z:e11200e7-eb04-4af8-a2e5-c203e62a92ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:09:56 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxL2RhdGFiYXNlcy9vbmVzZGs5ODg1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/Servers/onesdk5473/databases/onesdk9885\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "305" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b348d8fe-3503-4844-9aee-cf2598d0cab2" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:10:02.361Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "beb63a3e-cb34-4a30-ba2e-783cdb490795" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "ba5c7f48-f55a-4c48-a126-3c1af2bb1d26" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231002Z:ba5c7f48-f55a-4c48-a126-3c1af2bb1d26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:10:02 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxL2RhdGFiYXNlcy9vbmVzZGs5ODg1L29wZXJhdGlvblJlc3VsdHMvOWZmZWU2MGQtNDY5ZS00NGU2LWE1MTctMGJiOTEwZjJhYWExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b348d8fe-3503-4844-9aee-cf2598d0cab2" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:09:58.86Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2972467e-ba1b-4d18-b4ef-17eec290b904" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "3cdc0219-91ee-4875-8bf6-c6b437fea747" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231003Z:3cdc0219-91ee-4875-8bf6-c6b437fea747" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:10:03 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxL2RhdGFiYXNlcy9vbmVzZGs5ODg1L29wZXJhdGlvblJlc3VsdHMvOWZmZWU2MGQtNDY5ZS00NGU2LWE1MTctMGJiOTEwZjJhYWExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b348d8fe-3503-4844-9aee-cf2598d0cab2" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:09:58.86Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ea9ccd4f-a29a-4883-99f0-b888675680f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "1608f748-b643-4bab-a730-b3823ca698c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231013Z:1608f748-b643-4bab-a730-b3823ca698c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:10:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxL2RhdGFiYXNlcy9vbmVzZGs5ODg1L29wZXJhdGlvblJlc3VsdHMvOWZmZWU2MGQtNDY5ZS00NGU2LWE1MTctMGJiOTEwZjJhYWExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b348d8fe-3503-4844-9aee-cf2598d0cab2" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885\",\r\n \"name\": \"onesdk9885\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"256d1ebe-ceab-42fe-a446-8d4fe02d3cd9\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:10:17.78Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:11:17.78Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "766" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "0d90afa1-4766-4385-8741-51b11e7cfac8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "0d8e5dd7-0459-4086-a4d4-f51a2d13ad3c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231028Z:0d8e5dd7-0459-4086-a4d4-f51a2d13ad3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:10:28 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4f357a94-9515-45f0-8898-3e4cfe36e8b4" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381\",\r\n \"name\": \"onesdk6381\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6381.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "90a96bb0-47c4-4897-a816-9fbdc473c2db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "25c3c6e1-974e-4d30-af0f-b9e7b1760d0f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231029Z:25c3c6e1-974e-4d30-af0f-b9e7b1760d0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:10:28 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczL2RhdGFiYXNlcy9vbmVzZGs5ODg1L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0fb28d95-a568-4f8f-8cf3-024ab2facc6f" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/replicationLinks/9ffee60d-469e-44e6-a517-0bb910f2aaa1\",\r\n \"name\": \"9ffee60d-469e-44e6-a517-0bb910f2aaa1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6381\",\r\n \"partnerDatabase\": \"onesdk9885\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:10:01.54Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "bd8bdc50-79be-4eb4-964c-5c66bbc2825a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "0442086a-d716-495c-8e32-e0692c17925e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231029Z:0442086a-d716-495c-8e32-e0692c17925e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:10:29 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9823?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "e9f0c570-7cc9-4a1a-82ae-158d4859bda2" + ], + "x-ms-correlation-request-id": [ + "e9f0c570-7cc9-4a1a-82ae-158d4859bda2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231030Z:e9f0c570-7cc9-4a1a-82ae-158d4859bda2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:10:29 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "30ea6131-6415-43b7-86a9-ecc89aa190a5" + ], + "x-ms-correlation-request-id": [ + "30ea6131-6415-43b7-86a9-ecc89aa190a5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231030Z:30ea6131-6415-43b7-86a9-ecc89aa190a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:10:29 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "842fda26-fd86-4ce5-8af9-615577749e85" + ], + "x-ms-correlation-request-id": [ + "842fda26-fd86-4ce5-8af9-615577749e85" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231045Z:842fda26-fd86-4ce5-8af9-615577749e85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:10:45 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "440fee8e-5608-4c00-88c3-121abe909647" + ], + "x-ms-correlation-request-id": [ + "440fee8e-5608-4c00-88c3-121abe909647" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231100Z:440fee8e-5608-4c00-88c3-121abe909647" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:10:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-request-id": [ + "daf33bfc-dc9d-414e-a9e9-933782806819" + ], + "x-ms-correlation-request-id": [ + "daf33bfc-dc9d-414e-a9e9-933782806819" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231115Z:daf33bfc-dc9d-414e-a9e9-933782806819" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:11:15 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-request-id": [ + "c6efe45e-d534-418f-a466-354232e3abdf" + ], + "x-ms-correlation-request-id": [ + "c6efe45e-d534-418f-a466-354232e3abdf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231130Z:c6efe45e-d534-418f-a466-354232e3abdf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:11:30 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "946d70fb-80c9-43ec-b297-23da1353851e" + ], + "x-ms-correlation-request-id": [ + "946d70fb-80c9-43ec-b297-23da1353851e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231145Z:946d70fb-80c9-43ec-b297-23da1353851e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:11:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "2cfd0ecc-8136-4f8e-9633-b9040e227305" + ], + "x-ms-correlation-request-id": [ + "2cfd0ecc-8136-4f8e-9633-b9040e227305" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231200Z:2cfd0ecc-8136-4f8e-9633-b9040e227305" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:12:00 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "55e2f0e8-45de-4ffd-8141-1ac07263c2da" + ], + "x-ms-correlation-request-id": [ + "55e2f0e8-45de-4ffd-8141-1ac07263c2da" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231215Z:55e2f0e8-45de-4ffd-8141-1ac07263c2da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:12:15 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3550?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-request-id": [ + "971dd4b9-a958-4bca-a346-81639303ed94" + ], + "x-ms-correlation-request-id": [ + "971dd4b9-a958-4bca-a346-81639303ed94" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231216Z:971dd4b9-a958-4bca-a346-81639303ed94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:12:16 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-request-id": [ + "1943e5aa-459b-4d33-a540-ee99c9bde1eb" + ], + "x-ms-correlation-request-id": [ + "1943e5aa-459b-4d33-a540-ee99c9bde1eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231216Z:1943e5aa-459b-4d33-a540-ee99c9bde1eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:12:16 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-request-id": [ + "89982bef-4b76-45c8-8bb4-d172379ae928" + ], + "x-ms-correlation-request-id": [ + "89982bef-4b76-45c8-8bb4-d172379ae928" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231231Z:89982bef-4b76-45c8-8bb4-d172379ae928" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:12:30 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-request-id": [ + "4b439c4b-6316-4f16-b7aa-252ba41c4462" + ], + "x-ms-correlation-request-id": [ + "4b439c4b-6316-4f16-b7aa-252ba41c4462" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231246Z:4b439c4b-6316-4f16-b7aa-252ba41c4462" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:12:46 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-request-id": [ + "42779019-5d3e-4b88-a6b1-e62d7fd6c368" + ], + "x-ms-correlation-request-id": [ + "42779019-5d3e-4b88-a6b1-e62d7fd6c368" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231302Z:42779019-5d3e-4b88-a6b1-e62d7fd6c368" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:13:01 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-request-id": [ + "00979a0a-6821-4272-b6a8-f6ecb501c1f5" + ], + "x-ms-correlation-request-id": [ + "00979a0a-6821-4272-b6a8-f6ecb501c1f5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231317Z:00979a0a-6821-4272-b6a8-f6ecb501c1f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:13:16 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-request-id": [ + "f5d82457-78a0-4a67-8cfc-90ab43d7260e" + ], + "x-ms-correlation-request-id": [ + "f5d82457-78a0-4a67-8cfc-90ab43d7260e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231332Z:f5d82457-78a0-4a67-8cfc-90ab43d7260e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:13:31 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-request-id": [ + "757540e3-5728-4a71-9c49-90a67597e3b3" + ], + "x-ms-correlation-request-id": [ + "757540e3-5728-4a71-9c49-90a67597e3b3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231347Z:757540e3-5728-4a71-9c49-90a67597e3b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:13:46 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "6416656f-51f0-4665-b18d-471a086dd4ab" + ], + "x-ms-correlation-request-id": [ + "6416656f-51f0-4665-b18d-471a086dd4ab" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T231402Z:6416656f-51f0-4665-b18d-471a086dd4ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:14:02 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateSecondaryDatabaseV2": [ + "onesdk9823", + "onesdk5473", + "onesdk9885", + "onesdk3550", + "onesdk6381" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e", + "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b", + "Domain": "aztestorg114.ccsctp.net", + "User": "admin@aztestorg114.ccsctp.net" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLink.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLink.json new file mode 100644 index 000000000000..0ed75404f52b --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLink.json @@ -0,0 +1,2911 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk1904?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-request-id": [ + "4db7ad0a-eab1-40bf-9766-ee5af00289b4" + ], + "x-ms-correlation-request-id": [ + "4db7ad0a-eab1-40bf-9766-ee5af00289b4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232127Z:4db7ad0a-eab1-40bf-9766-ee5af00289b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:21:27 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk1904?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "4625beb3-fc5d-4ae1-be7a-dd519b47346a" + ], + "x-ms-correlation-request-id": [ + "4625beb3-fc5d-4ae1-be7a-dd519b47346a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232541Z:4625beb3-fc5d-4ae1-be7a-dd519b47346a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:25:41 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk1904?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "34" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904\",\r\n \"name\": \"onesdk1904\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-request-id": [ + "5659270e-c00d-48f2-8248-3263e369b1d3" + ], + "x-ms-correlation-request-id": [ + "5659270e-c00d-48f2-8248-3263e369b1d3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232129Z:5659270e-c00d-48f2-8248-3263e369b1d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:21:28 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "a971a4aa-a449-4c09-ba30-28e3ee188d5a" + ], + "x-ms-correlation-request-id": [ + "a971a4aa-a449-4c09-ba30-28e3ee188d5a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232129Z:a971a4aa-a449-4c09-ba30-28e3ee188d5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:21:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk1904/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:13a7f16a-1406-4e58-8e27-f74c1d75060d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "f930864d-a3f8-4626-8333-d6b056942b85" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232129Z:f930864d-a3f8-4626-8333-d6b056942b85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:21:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a8882d93-3633-4ed2-b293-0b257a9dca24" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2003' under resource group 'onesdk1904' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "abd9f59e-422d-477b-8b2b-ded0b59d6bae" + ], + "x-ms-correlation-request-id": [ + "abd9f59e-422d-477b-8b2b-ded0b59d6bae" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232130Z:abd9f59e-422d-477b-8b2b-ded0b59d6bae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:21:30 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dcbc1539-8a0e-44ba-811c-ea4e1bc9536d" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003\",\r\n \"name\": \"onesdk2003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2003.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "94eed0c6-457c-44aa-b185-c01dc5060d06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "8a909bd3-a500-4e86-acd9-0ed58a6815a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232216Z:8a909bd3-a500-4e86-acd9-0ed58a6815a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:22:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9ea2f467-eac1-46bb-b522-e9c4182835c4" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003\",\r\n \"name\": \"onesdk2003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2003.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c7aa6265-2770-4f20-919a-483d350d5d35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "479f06f0-63b0-425e-a8c1-4a1d5aafa2d9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232215Z:479f06f0-63b0-425e-a8c1-4a1d5aafa2d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:22:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "847eb7f7-359d-4944-9fe8-f14a17160eb3" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2003/databases/onesdk2524' under resource group 'onesdk1904' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "cee2c99a-edc0-4766-a372-ac89316c1215" + ], + "x-ms-correlation-request-id": [ + "cee2c99a-edc0-4766-a372-ac89316c1215" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232215Z:cee2c99a-edc0-4766-a372-ac89316c1215" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:22:15 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "126" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "df753c5f-0f33-464b-a5ce-212c10c77b03" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T16:22:17.168-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "4d68c546-bd53-40da-a5f2-ceed3aa98cb4" + ], + "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": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "c02710de-4043-45b5-8640-8035dec92a83" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232218Z:c02710de-4043-45b5-8640-8035dec92a83" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:22:17 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNGQ2OGM1NDYtYmQ1My00MGRhLWE1ZjItY2VlZDNhYTk4Y2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "df753c5f-0f33-464b-a5ce-212c10c77b03" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:22:17.137Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "4297e5dc-64de-4abe-89e8-b14371c7ab22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "9e63288a-437b-4550-bb28-7992951edb60" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232219Z:9e63288a-437b-4550-bb28-7992951edb60" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:22:18 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNGQ2OGM1NDYtYmQ1My00MGRhLWE1ZjItY2VlZDNhYTk4Y2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "df753c5f-0f33-464b-a5ce-212c10c77b03" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:22:17.137Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "ec5dd14d-cd77-4004-93e2-abf73347a880" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "28c64687-5940-439a-9f51-3a6fe71db2c8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232249Z:28c64687-5940-439a-9f51-3a6fe71db2c8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:22:49 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNGQ2OGM1NDYtYmQ1My00MGRhLWE1ZjItY2VlZDNhYTk4Y2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "df753c5f-0f33-464b-a5ce-212c10c77b03" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:22:17.137Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "0611d8fb-9c8e-4f63-84db-c45e270b1947" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "21633dce-bcc9-4449-94b8-bdee6f875b23" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232305Z:21633dce-bcc9-4449-94b8-bdee6f875b23" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:23:05 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNGQ2OGM1NDYtYmQ1My00MGRhLWE1ZjItY2VlZDNhYTk4Y2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "df753c5f-0f33-464b-a5ce-212c10c77b03" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:22:17.137Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "8e42370f-b5d4-4f99-8317-ea55db8782b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "1b1e38d1-84ea-457b-9bbc-d471dd9fa3ce" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232321Z:1b1e38d1-84ea-457b-9bbc-d471dd9fa3ce" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:23:21 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNGQ2OGM1NDYtYmQ1My00MGRhLWE1ZjItY2VlZDNhYTk4Y2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "df753c5f-0f33-464b-a5ce-212c10c77b03" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524\",\r\n \"name\": \"onesdk2524\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"6f37e908-827d-4f58-a8c5-54477f1b1db2\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:22:17.467Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:33:28.603Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "84cdcd54-46da-48de-9420-077ee791f2f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "a9ea17b1-51cb-4c68-aed6-3dfa7611eb06" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232337Z:a9ea17b1-51cb-4c68-aed6-3dfa7611eb06" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:23:37 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7354?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "d99cddf1-2ce8-461d-b0c3-c1ba68c5cdd9" + ], + "x-ms-correlation-request-id": [ + "d99cddf1-2ce8-461d-b0c3-c1ba68c5cdd9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232337Z:d99cddf1-2ce8-461d-b0c3-c1ba68c5cdd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:23:36 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7354?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "29ba001e-2bc0-4c69-80f3-af2724b0efa2" + ], + "x-ms-correlation-request-id": [ + "29ba001e-2bc0-4c69-80f3-af2724b0efa2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232730Z:29ba001e-2bc0-4c69-80f3-af2724b0efa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:27:30 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7354?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "34" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354\",\r\n \"name\": \"onesdk7354\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "95c6d47b-1879-46b5-b2e5-06e4835b83a9" + ], + "x-ms-correlation-request-id": [ + "95c6d47b-1879-46b5-b2e5-06e4835b83a9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232339Z:95c6d47b-1879-46b5-b2e5-06e4835b83a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:23:39 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "015904ad-d1da-4267-9ab4-b466220f3ad4" + ], + "x-ms-correlation-request-id": [ + "015904ad-d1da-4267-9ab4-b466220f3ad4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232339Z:015904ad-d1da-4267-9ab4-b466220f3ad4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:23:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7354/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:60c6254e-8375-4163-b996-6d6b123c36c7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "9e93ab22-d85a-42c9-8545-4729eda00702" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232339Z:9e93ab22-d85a-42c9-8545-4729eda00702" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:23:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "943352a9-cd3e-4650-bec1-5c6aa1eaa09d" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3994' under resource group 'onesdk7354' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "56b3c8f6-65de-45bc-af4a-b62086d2f98c" + ], + "x-ms-correlation-request-id": [ + "56b3c8f6-65de-45bc-af4a-b62086d2f98c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232339Z:56b3c8f6-65de-45bc-af4a-b62086d2f98c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:23:39 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "12f9f541-3c3d-4077-8a20-5b6682da95eb" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994\",\r\n \"name\": \"onesdk3994\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3994.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "eec1bf25-714c-4e4f-8ca9-5ea067bda16b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "91b8fceb-7315-4363-b91e-2b8073cd36c0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232421Z:91b8fceb-7315-4363-b91e-2b8073cd36c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:24:20 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "d79ecf45-c98a-4e2c-9e6b-e7b283353d40" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994\",\r\n \"name\": \"onesdk3994\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3994.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "b0960495-ef63-4f2f-b573-75eed2da7c08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "43a5086d-4fc8-4e70-8a28-92d5afd447a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232421Z:43a5086d-4fc8-4e70-8a28-92d5afd447a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:24:20 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "bd95b792-063c-4750-bb01-3684da40d165" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3994/databases/onesdk2524' under resource group 'onesdk7354' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "be2ea4bc-78bb-4c03-a069-c1137a64a8aa" + ], + "x-ms-correlation-request-id": [ + "be2ea4bc-78bb-4c03-a069-c1137a64a8aa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232421Z:be2ea4bc-78bb-4c03-a069-c1137a64a8aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:24:20 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/Servers/onesdk2003/databases/onesdk2524\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "301" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ddb6fa92-19bc-4a94-87bb-97ea66d5663c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T16:24:22.569-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "77e4cd03-4276-497a-a086-0e0b84c70f87" + ], + "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": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "6984fe55-d446-4965-9539-c33d925dbd90" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232423Z:6984fe55-d446-4965-9539-c33d925dbd90" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:24:23 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ddb6fa92-19bc-4a94-87bb-97ea66d5663c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:24:22.96Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e6779060-0a9a-4f42-92f7-385facec345c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "3f54b4e2-ecd6-4666-99ee-b98e28951a2f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232424Z:3f54b4e2-ecd6-4666-99ee-b98e28951a2f" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:24:24 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ddb6fa92-19bc-4a94-87bb-97ea66d5663c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:24:22.96Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3573b766-aea4-4560-b562-a34e46f1e176" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "4cb8bf79-231f-4f8f-a9b9-52af202ce699" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232435Z:4cb8bf79-231f-4f8f-a9b9-52af202ce699" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:24:34 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ddb6fa92-19bc-4a94-87bb-97ea66d5663c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:24:22.96Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d7bcae50-9c6e-4798-9958-a7387f7bc175" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "26173826-4962-48d2-918e-1b9e1f99c42b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232451Z:26173826-4962-48d2-918e-1b9e1f99c42b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:24:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ddb6fa92-19bc-4a94-87bb-97ea66d5663c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:24:22.96Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4535c850-0c24-4d11-b2f7-b68621b40bc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "ca38d271-258e-4f29-bb2a-6c84b2b61a79" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232507Z:ca38d271-258e-4f29-bb2a-6c84b2b61a79" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:25:07 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ddb6fa92-19bc-4a94-87bb-97ea66d5663c" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:24:22.96Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f099058d-3e30-41b3-906a-83afc6bba6d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "c4d3059a-9b7b-4a63-a4c4-be22204695c5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232522Z:c4d3059a-9b7b-4a63-a4c4-be22204695c5" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:25:22 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ddb6fa92-19bc-4a94-87bb-97ea66d5663c" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524\",\r\n \"name\": \"onesdk2524\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1c963a19-431a-4461-93e3-d2863f39e523\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:24:23.743Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:35:25.597Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "e6379389-378e-45bc-98bd-bd45504929fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "3e1e6d5b-fe3e-4e11-8954-529a7c3649bf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232538Z:3e1e6d5b-fe3e-4e11-8954-529a7c3649bf" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:25:38 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0cb7fc80-38f3-4f81-90ab-fbe87ed3aacc" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994\",\r\n \"name\": \"onesdk3994\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3994.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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 }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "479" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "610532b5-c44f-4ec4-8a2d-5e9e08d4f123" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "5093ef20-cb8c-4fe9-a55a-8678e7848eda" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232539Z:5093ef20-cb8c-4fe9-a55a-8678e7848eda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:25:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "44746292-b61e-497c-819b-013d96ed4fda" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994\",\r\n \"name\": \"onesdk3994\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3994.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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 }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "479" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "1b26f5fc-d4ed-4d8a-95ba-8b568f79c6eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "c488c016-693b-4c06-aea8-a91630671ee1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232540Z:c488c016-693b-4c06-aea8-a91630671ee1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:25:40 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3c69c607-619b-4c25-95c3-7574ca36fdac" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/replicationLinks/e3cdcb48-0cb3-42b8-bc1e-3bed4ceff1d0\",\r\n \"name\": \"e3cdcb48-0cb3-42b8-bc1e-3bed4ceff1d0\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk3994\",\r\n \"partnerDatabase\": \"onesdk2524\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:25:04.023\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "e60aee16-3e76-41c8-bc94-ef8ff875b2c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "469bb86f-a2e0-4f52-bd4f-7ffbd04149ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232540Z:469bb86f-a2e0-4f52-bd4f-7ffbd04149ec" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:25:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4663da32-df2c-4509-893c-aa99d375707d" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/replicationLinks/e3cdcb48-0cb3-42b8-bc1e-3bed4ceff1d0\",\r\n \"name\": \"e3cdcb48-0cb3-42b8-bc1e-3bed4ceff1d0\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk3994\",\r\n \"partnerDatabase\": \"onesdk2524\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:25:04.023\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "7836a29a-9559-4777-9ac7-5d76e749985f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "55f973a0-5ebc-4e9f-9dd5-c5528f6e7de5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232540Z:55f973a0-5ebc-4e9f-9dd5-c5528f6e7de5" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:25:40 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk1904?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-request-id": [ + "7def5cd7-df8e-44f9-9327-9fc55138e44a" + ], + "x-ms-correlation-request-id": [ + "7def5cd7-df8e-44f9-9327-9fc55138e44a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232543Z:7def5cd7-df8e-44f9-9327-9fc55138e44a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:25:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-request-id": [ + "e3172aad-9098-4f87-8986-c7605aec1795" + ], + "x-ms-correlation-request-id": [ + "e3172aad-9098-4f87-8986-c7605aec1795" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232543Z:e3172aad-9098-4f87-8986-c7605aec1795" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:25:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-request-id": [ + "391ae865-7a23-4411-849a-1ae4cac56b02" + ], + "x-ms-correlation-request-id": [ + "391ae865-7a23-4411-849a-1ae4cac56b02" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232558Z:391ae865-7a23-4411-849a-1ae4cac56b02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:25:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-request-id": [ + "23b9435b-d615-4fc5-9e72-1903c941902b" + ], + "x-ms-correlation-request-id": [ + "23b9435b-d615-4fc5-9e72-1903c941902b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232613Z:23b9435b-d615-4fc5-9e72-1903c941902b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:26:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "acd7016f-ebd5-4f8b-8c00-b420254e7823" + ], + "x-ms-correlation-request-id": [ + "acd7016f-ebd5-4f8b-8c00-b420254e7823" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232629Z:acd7016f-ebd5-4f8b-8c00-b420254e7823" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:26:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-request-id": [ + "a160efd4-2679-46dc-8af7-72a919b52d2d" + ], + "x-ms-correlation-request-id": [ + "a160efd4-2679-46dc-8af7-72a919b52d2d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232644Z:a160efd4-2679-46dc-8af7-72a919b52d2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:26:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "cb21ad5b-da9e-4e7b-be0f-a4879434a0b0" + ], + "x-ms-correlation-request-id": [ + "cb21ad5b-da9e-4e7b-be0f-a4879434a0b0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232659Z:cb21ad5b-da9e-4e7b-be0f-a4879434a0b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:26:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-request-id": [ + "be609f48-54ae-4344-8018-1b94b76f2f91" + ], + "x-ms-correlation-request-id": [ + "be609f48-54ae-4344-8018-1b94b76f2f91" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232715Z:be609f48-54ae-4344-8018-1b94b76f2f91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:27:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-request-id": [ + "e1a3d00e-3d68-4382-8085-ee8514b9de3e" + ], + "x-ms-correlation-request-id": [ + "e1a3d00e-3d68-4382-8085-ee8514b9de3e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232730Z:e1a3d00e-3d68-4382-8085-ee8514b9de3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:27:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7354?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-request-id": [ + "b90c8ad2-fae8-4fd2-b19a-e0dfdabff3db" + ], + "x-ms-correlation-request-id": [ + "b90c8ad2-fae8-4fd2-b19a-e0dfdabff3db" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232732Z:b90c8ad2-fae8-4fd2-b19a-e0dfdabff3db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:27:31 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "c74ca0e4-249d-49c4-ae89-9e66695ccefd" + ], + "x-ms-correlation-request-id": [ + "c74ca0e4-249d-49c4-ae89-9e66695ccefd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232732Z:c74ca0e4-249d-49c4-ae89-9e66695ccefd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:27:31 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "04df39c5-7413-4c51-b88a-1e5a04f44ef9" + ], + "x-ms-correlation-request-id": [ + "04df39c5-7413-4c51-b88a-1e5a04f44ef9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232747Z:04df39c5-7413-4c51-b88a-1e5a04f44ef9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:27:47 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "2de2cc07-7e0f-48fc-a85b-f32deca00760" + ], + "x-ms-correlation-request-id": [ + "2de2cc07-7e0f-48fc-a85b-f32deca00760" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232803Z:2de2cc07-7e0f-48fc-a85b-f32deca00760" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:28:02 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "76d48c3c-a240-45c0-ba31-3c14cf136a28" + ], + "x-ms-correlation-request-id": [ + "76d48c3c-a240-45c0-ba31-3c14cf136a28" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232818Z:76d48c3c-a240-45c0-ba31-3c14cf136a28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:28:17 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-request-id": [ + "08477715-60ff-494c-8446-59dee83d3c08" + ], + "x-ms-correlation-request-id": [ + "08477715-60ff-494c-8446-59dee83d3c08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232833Z:08477715-60ff-494c-8446-59dee83d3c08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:28:33 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-request-id": [ + "44900092-5d06-4c12-8889-e9443482e495" + ], + "x-ms-correlation-request-id": [ + "44900092-5d06-4c12-8889-e9443482e495" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232848Z:44900092-5d06-4c12-8889-e9443482e495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:28:48 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "384357e3-14be-4a1a-a94d-01e32eed038e" + ], + "x-ms-correlation-request-id": [ + "384357e3-14be-4a1a-a94d-01e32eed038e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232904Z:384357e3-14be-4a1a-a94d-01e32eed038e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:29:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-request-id": [ + "9a1dec5b-9f65-420e-af9e-0d30950e3ced" + ], + "x-ms-correlation-request-id": [ + "9a1dec5b-9f65-420e-af9e-0d30950e3ced" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T232919Z:9a1dec5b-9f65-420e-af9e-0d30950e3ced" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:29:18 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetReplicationLink": [ + "onesdk1904", + "onesdk2003", + "onesdk2524", + "onesdk7354", + "onesdk3994" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e", + "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b", + "Domain": "aztestorg114.ccsctp.net", + "User": "admin@aztestorg114.ccsctp.net" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLinkV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLinkV2.json new file mode 100644 index 000000000000..f1c8ec95656f --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLinkV2.json @@ -0,0 +1,2551 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5818?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-request-id": [ + "5fbc373f-de5c-4a21-8b6a-cee1fa99354e" + ], + "x-ms-correlation-request-id": [ + "5fbc373f-de5c-4a21-8b6a-cee1fa99354e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233000Z:5fbc373f-de5c-4a21-8b6a-cee1fa99354e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:00 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5818?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "d8eb08c2-352d-4f81-a559-54bed930795a" + ], + "x-ms-correlation-request-id": [ + "d8eb08c2-352d-4f81-a559-54bed930795a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233118Z:d8eb08c2-352d-4f81-a559-54bed930795a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:31:17 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5818?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818\",\r\n \"name\": \"onesdk5818\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "181" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "7a3ec6a5-0dfe-4d2a-9b9f-ded81a43eea7" + ], + "x-ms-correlation-request-id": [ + "7a3ec6a5-0dfe-4d2a-9b9f-ded81a43eea7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233000Z:7a3ec6a5-0dfe-4d2a-9b9f-ded81a43eea7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:00 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "5616b29c-f0ae-44a2-a50c-88cddbf5abc6" + ], + "x-ms-correlation-request-id": [ + "5616b29c-f0ae-44a2-a50c-88cddbf5abc6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233000Z:5616b29c-f0ae-44a2-a50c-88cddbf5abc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5818/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:ebe44428-9160-428b-a353-181c95ce51d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "5edaf375-fd1d-48e9-8cee-46fc8c71893c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233001Z:5edaf375-fd1d-48e9-8cee-46fc8c71893c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:00 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dc0c8f10-b34f-4d91-89b5-2ba79325d86a" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7181' under resource group 'onesdk5818' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2735d719-f7fa-4f29-82ce-ce5fcea92561" + ], + "x-ms-correlation-request-id": [ + "2735d719-f7fa-4f29-82ce-ce5fcea92561" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233001Z:2735d719-f7fa-4f29-82ce-ce5fcea92561" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:01 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b1673b9e-e0b1-411c-a404-334bd7293994" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181\",\r\n \"name\": \"onesdk7181\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7181.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "5e4dadbf-614e-44e4-825a-0df3c4a0da13" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "be984ee0-fbf4-4b63-84cd-34103f4e6e5b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233008Z:be984ee0-fbf4-4b63-84cd-34103f4e6e5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:07 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "edecf180-008a-4897-94c4-b516918ddb46" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181\",\r\n \"name\": \"onesdk7181\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7181.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c1cc1964-816d-4263-897a-b30b3092d1f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "7caeec73-2489-412c-95c9-b6d212d534c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233007Z:7caeec73-2489-412c-95c9-b6d212d534c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:07 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "63aec438-70e4-4a10-a276-547dcd4a2b61" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7181/databases/onesdk9079' under resource group 'onesdk5818' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "21d0b2df-70a2-435e-93dd-2d5d75653320" + ], + "x-ms-correlation-request-id": [ + "21d0b2df-70a2-435e-93dd-2d5d75653320" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233008Z:21d0b2df-70a2-435e-93dd-2d5d75653320" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:07 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "130" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3fe215b8-cd58-40e1-ab9a-60916c367367" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-19T23:30:09.653Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "aec90f8e-397d-40f0-bed3-6475dd248e5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "0a9a4a41-90fc-46b7-80d9-b43933a10abe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233009Z:0a9a4a41-90fc-46b7-80d9-b43933a10abe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:09 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/operationResults/aa43fc4b-01f5-4572-8ae1-81a976011e1c?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/operationResults/aa43fc4b-01f5-4572-8ae1-81a976011e1c?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L29wZXJhdGlvblJlc3VsdHMvYWE0M2ZjNGItMDFmNS00NTcyLThhZTEtODFhOTc2MDExZTFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3fe215b8-cd58-40e1-ab9a-60916c367367" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-19T23:30:08.933Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "c654c9a9-72d3-41a2-9a38-36aa002dbf45" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "078bcf83-b9e4-4677-a2eb-078c5dfb678b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233010Z:078bcf83-b9e4-4677-a2eb-078c5dfb678b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:09 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/operationResults/aa43fc4b-01f5-4572-8ae1-81a976011e1c?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/operationResults/aa43fc4b-01f5-4572-8ae1-81a976011e1c?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L29wZXJhdGlvblJlc3VsdHMvYWE0M2ZjNGItMDFmNS00NTcyLThhZTEtODFhOTc2MDExZTFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3fe215b8-cd58-40e1-ab9a-60916c367367" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079\",\r\n \"name\": \"onesdk9079\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fded1b07-3923-4099-aef5-cb52518cf516\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:30:09.213Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:31:09.213Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "778" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "52f442e1-2d55-4b50-9fca-10b4ee357407" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "0fbad3de-dbf5-4522-a595-f28dffcdaf9e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233040Z:0fbad3de-dbf5-4522-a595-f28dffcdaf9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:40 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9949?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "02abd1b2-e7bf-4fe2-a063-cdc0931c7855" + ], + "x-ms-correlation-request-id": [ + "02abd1b2-e7bf-4fe2-a063-cdc0931c7855" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233040Z:02abd1b2-e7bf-4fe2-a063-cdc0931c7855" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:40 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9949?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-request-id": [ + "b536958a-c08e-4e8b-84fa-c83cad4cb1a1" + ], + "x-ms-correlation-request-id": [ + "b536958a-c08e-4e8b-84fa-c83cad4cb1a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233304Z:b536958a-c08e-4e8b-84fa-c83cad4cb1a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:33:04 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9949?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949\",\r\n \"name\": \"onesdk9949\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "181" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "203c4a84-7fd5-4d62-8c8c-df8e5bf3932e" + ], + "x-ms-correlation-request-id": [ + "203c4a84-7fd5-4d62-8c8c-df8e5bf3932e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233041Z:203c4a84-7fd5-4d62-8c8c-df8e5bf3932e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:40 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "b25e8fa4-5b41-4bc8-91e4-2c9e9bc5d0db" + ], + "x-ms-correlation-request-id": [ + "b25e8fa4-5b41-4bc8-91e4-2c9e9bc5d0db" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233041Z:b25e8fa4-5b41-4bc8-91e4-2c9e9bc5d0db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9949/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:ba23706b-ea82-4b9c-8fc9-170cb7ce85ed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "c456837c-34d2-4a93-b347-155c1291cb21" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233041Z:c456837c-34d2-4a93-b347-155c1291cb21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "461eb149-1363-4695-9146-105bf7413224" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9051' under resource group 'onesdk9949' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2269bca3-a36a-4760-906d-7970e666d666" + ], + "x-ms-correlation-request-id": [ + "2269bca3-a36a-4760-906d-7970e666d666" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233041Z:2269bca3-a36a-4760-906d-7970e666d666" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:40 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "6484c360-bd67-4cb9-b052-42a2597f8077" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051\",\r\n \"name\": \"onesdk9051\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9051.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "42b68ada-e387-4eb0-afce-cd4d48b73b06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "175ef328-9fbe-417e-bff8-dc0244945538" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233046Z:175ef328-9fbe-417e-bff8-dc0244945538" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:46 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a66d57b4-0d27-436e-a807-a1cfd5d3e6f2" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051\",\r\n \"name\": \"onesdk9051\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9051.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "dac0e9ca-bbe4-4d28-924e-50870c9a07ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "b03a7125-362c-4b1a-ac0e-dbb70454b370" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233046Z:b03a7125-362c-4b1a-ac0e-dbb70454b370" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:45 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxL2RhdGFiYXNlcy9vbmVzZGs5MDc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "8753f0d3-3778-46e9-b322-58e9c4b15bf5" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9051/databases/onesdk9079' under resource group 'onesdk9949' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e0ff889d-b6a9-4079-9de6-1e1e6db1f308" + ], + "x-ms-correlation-request-id": [ + "e0ff889d-b6a9-4079-9de6-1e1e6db1f308" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233046Z:e0ff889d-b6a9-4079-9de6-1e1e6db1f308" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:45 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxL2RhdGFiYXNlcy9vbmVzZGs5MDc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/Servers/onesdk7181/databases/onesdk9079\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "305" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "1dbd295f-e380-40ca-a5ea-0ddfebb6d2ed" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:30:50.671Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fab1fde8-9aa8-47bd-8494-ab3640380856" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "d9f45dbc-9fe2-4d4a-9bcd-592c94a1c39e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233050Z:d9f45dbc-9fe2-4d4a-9bcd-592c94a1c39e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L29wZXJhdGlvblJlc3VsdHMvMmFlNmIxZTItMWFkOC00ZDM1LTk4NTYtZWI4NDBmZGM1YzIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "1dbd295f-e380-40ca-a5ea-0ddfebb6d2ed" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:30:47.25Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cfc0fa48-f641-4a7c-9939-208f9e1456e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "4b317139-f444-4ee4-b386-86bb5661c362" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233051Z:4b317139-f444-4ee4-b386-86bb5661c362" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:30:51 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L29wZXJhdGlvblJlc3VsdHMvMmFlNmIxZTItMWFkOC00ZDM1LTk4NTYtZWI4NDBmZGM1YzIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "1dbd295f-e380-40ca-a5ea-0ddfebb6d2ed" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:30:47.25Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "47652ef2-e119-4a75-92db-6d2a91bca6c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "d5c93e81-84f1-4dc6-b4ae-ebf6e21b3cb7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233101Z:d5c93e81-84f1-4dc6-b4ae-ebf6e21b3cb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:31:01 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L29wZXJhdGlvblJlc3VsdHMvMmFlNmIxZTItMWFkOC00ZDM1LTk4NTYtZWI4NDBmZGM1YzIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "1dbd295f-e380-40ca-a5ea-0ddfebb6d2ed" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079\",\r\n \"name\": \"onesdk9079\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"dc45f2ef-09c5-4b4a-9097-983ec069caaf\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:31:02.307Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:32:02.307Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "768" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "5254ef6c-a5a5-426f-b910-476154de71b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "c0b4f5c1-d4c9-4495-bda8-8a30d202b5c2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233117Z:c0b4f5c1-d4c9-4495-bda8-8a30d202b5c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:31:16 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3a767b29-3c5a-461c-a4d4-24aead99a725" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051\",\r\n \"name\": \"onesdk9051\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9051.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "b87bc1d4-4704-4cef-ae20-c776cd8eda09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "8adaaab5-0d7a-4bf5-b7e6-501020876f90" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233117Z:8adaaab5-0d7a-4bf5-b7e6-501020876f90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:31:16 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2bef9c07-db7d-43fa-9514-8b5a80f42405" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051\",\r\n \"name\": \"onesdk9051\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9051.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "b1261fed-509e-45d7-ac49-dd4b90086275" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "c3521566-77dc-4407-89ce-6a6634d961d4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233117Z:c3521566-77dc-4407-89ce-6a6634d961d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:31:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e7c100ae-630e-4e8c-8e07-5cbf8c90b925" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/replicationLinks/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21\",\r\n \"name\": \"2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk9051\",\r\n \"partnerDatabase\": \"onesdk9079\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:30:50.03Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "a0b38251-5132-400d-b0d6-df2142996776" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "e89d48bf-1145-4ce6-8772-c478acc4cfe8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233117Z:e89d48bf-1145-4ce6-8772-c478acc4cfe8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:31:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "cb5a2cd6-274c-4772-bd86-d90d75ea9155" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/replicationLinks/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21\",\r\n \"name\": \"2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk9051\",\r\n \"partnerDatabase\": \"onesdk9079\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:30:50.03Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "07903825-cbb6-4943-82b1-7e6798955dbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "2b98b0b4-d246-4280-be32-0c885cd0262d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233118Z:2b98b0b4-d246-4280-be32-0c885cd0262d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:31:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5818?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-request-id": [ + "8a2d6a18-0566-47b3-94e2-95628f16058e" + ], + "x-ms-correlation-request-id": [ + "8a2d6a18-0566-47b3-94e2-95628f16058e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233118Z:8a2d6a18-0566-47b3-94e2-95628f16058e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:31:17 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "a361b971-498f-4414-9c46-c579055f5cc8" + ], + "x-ms-correlation-request-id": [ + "a361b971-498f-4414-9c46-c579055f5cc8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233118Z:a361b971-498f-4414-9c46-c579055f5cc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:31:17 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "64a526df-d383-409d-94bc-9badf96a0e05" + ], + "x-ms-correlation-request-id": [ + "64a526df-d383-409d-94bc-9badf96a0e05" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233134Z:64a526df-d383-409d-94bc-9badf96a0e05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:31:34 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "c6d6ca17-381b-4d75-9a86-748157345d37" + ], + "x-ms-correlation-request-id": [ + "c6d6ca17-381b-4d75-9a86-748157345d37" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233149Z:c6d6ca17-381b-4d75-9a86-748157345d37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:31:48 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-request-id": [ + "bf0a67d5-0a38-436d-ae56-75cedaa8eff2" + ], + "x-ms-correlation-request-id": [ + "bf0a67d5-0a38-436d-ae56-75cedaa8eff2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233204Z:bf0a67d5-0a38-436d-ae56-75cedaa8eff2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:32:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-request-id": [ + "34024295-447c-419d-a08d-72810c63af92" + ], + "x-ms-correlation-request-id": [ + "34024295-447c-419d-a08d-72810c63af92" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233219Z:34024295-447c-419d-a08d-72810c63af92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:32:19 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "ac84c4d0-2253-4002-a758-388db531b9b6" + ], + "x-ms-correlation-request-id": [ + "ac84c4d0-2253-4002-a758-388db531b9b6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233234Z:ac84c4d0-2253-4002-a758-388db531b9b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:32:33 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-request-id": [ + "aae7f9f8-a938-416d-9e61-999d4fae640e" + ], + "x-ms-correlation-request-id": [ + "aae7f9f8-a938-416d-9e61-999d4fae640e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233249Z:aae7f9f8-a938-416d-9e61-999d4fae640e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:32:49 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "2b6eed90-4483-431c-af29-cfe323b04e34" + ], + "x-ms-correlation-request-id": [ + "2b6eed90-4483-431c-af29-cfe323b04e34" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233304Z:2b6eed90-4483-431c-af29-cfe323b04e34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:33:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9949?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-request-id": [ + "8965c5fa-ae2d-48b9-acbf-a5f7802025c2" + ], + "x-ms-correlation-request-id": [ + "8965c5fa-ae2d-48b9-acbf-a5f7802025c2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233305Z:8965c5fa-ae2d-48b9-acbf-a5f7802025c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:33:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-request-id": [ + "75b365eb-c06c-47f6-af29-59c81784e876" + ], + "x-ms-correlation-request-id": [ + "75b365eb-c06c-47f6-af29-59c81784e876" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233305Z:75b365eb-c06c-47f6-af29-59c81784e876" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:33:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-request-id": [ + "f15ec4b3-ba42-4471-94a0-cc2cc86c968e" + ], + "x-ms-correlation-request-id": [ + "f15ec4b3-ba42-4471-94a0-cc2cc86c968e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233320Z:f15ec4b3-ba42-4471-94a0-cc2cc86c968e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:33:19 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-request-id": [ + "1b9ecd84-3563-484b-b974-7739013b8668" + ], + "x-ms-correlation-request-id": [ + "1b9ecd84-3563-484b-b974-7739013b8668" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233335Z:1b9ecd84-3563-484b-b974-7739013b8668" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:33:34 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-request-id": [ + "38cf8ee2-98a6-44ca-8b67-c914be4d6f3e" + ], + "x-ms-correlation-request-id": [ + "38cf8ee2-98a6-44ca-8b67-c914be4d6f3e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233350Z:38cf8ee2-98a6-44ca-8b67-c914be4d6f3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:33:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-request-id": [ + "ffc2dc70-76e5-46d7-bb5e-b4b3b1195270" + ], + "x-ms-correlation-request-id": [ + "ffc2dc70-76e5-46d7-bb5e-b4b3b1195270" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233405Z:ffc2dc70-76e5-46d7-bb5e-b4b3b1195270" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:34:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-request-id": [ + "77a71a28-3a92-402c-97ba-daaf8b9991d6" + ], + "x-ms-correlation-request-id": [ + "77a71a28-3a92-402c-97ba-daaf8b9991d6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233420Z:77a71a28-3a92-402c-97ba-daaf8b9991d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:34:20 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-request-id": [ + "0c9f6305-c1e7-4d0e-9c2f-8dd03bd3fe66" + ], + "x-ms-correlation-request-id": [ + "0c9f6305-c1e7-4d0e-9c2f-8dd03bd3fe66" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233435Z:0c9f6305-c1e7-4d0e-9c2f-8dd03bd3fe66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:34:35 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-request-id": [ + "0577c519-f99a-4d26-a1d1-e37ff26c19b8" + ], + "x-ms-correlation-request-id": [ + "0577c519-f99a-4d26-a1d1-e37ff26c19b8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T233450Z:0577c519-f99a-4d26-a1d1-e37ff26c19b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:34:50 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetReplicationLinkV2": [ + "onesdk5818", + "onesdk7181", + "onesdk9079", + "onesdk9949", + "onesdk9051" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e", + "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b", + "Domain": "aztestorg114.ccsctp.net", + "User": "admin@aztestorg114.ccsctp.net" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabase.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabase.json new file mode 100644 index 000000000000..88c92f639b0d --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabase.json @@ -0,0 +1,3193 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2821?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-request-id": [ + "9a6d3763-4c2f-4ecc-8c40-3530eb1400d5" + ], + "x-ms-correlation-request-id": [ + "9a6d3763-4c2f-4ecc-8c40-3530eb1400d5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235208Z:9a6d3763-4c2f-4ecc-8c40-3530eb1400d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:52:07 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2821?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "f3ffa284-df8c-43c5-a7cb-c717882781d4" + ], + "x-ms-correlation-request-id": [ + "f3ffa284-df8c-43c5-a7cb-c717882781d4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235705Z:f3ffa284-df8c-43c5-a7cb-c717882781d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:04 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2821?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "34" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821\",\r\n \"name\": \"onesdk2821\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-request-id": [ + "0cbb400b-0b47-4d08-bfb6-28a21b2d7d39" + ], + "x-ms-correlation-request-id": [ + "0cbb400b-0b47-4d08-bfb6-28a21b2d7d39" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235209Z:0cbb400b-0b47-4d08-bfb6-28a21b2d7d39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:52:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "9352ec4d-d36f-4ad9-8195-f7251faf4410" + ], + "x-ms-correlation-request-id": [ + "9352ec4d-d36f-4ad9-8195-f7251faf4410" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235209Z:9352ec4d-d36f-4ad9-8195-f7251faf4410" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:52:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2821/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:4200f299-4126-4e40-8d09-28b122d9f4ae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "b5ccff43-08ba-4cc8-ae5b-8e9a75cec1a0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235210Z:b5ccff43-08ba-4cc8-ae5b-8e9a75cec1a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:52:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a804a0ae-9e46-4bd6-8f79-e96564389cbe" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk475' under resource group 'onesdk2821' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "145" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "115c94e9-59d2-4eba-8b63-7e1d2607961e" + ], + "x-ms-correlation-request-id": [ + "115c94e9-59d2-4eba-8b63-7e1d2607961e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235211Z:115c94e9-59d2-4eba-8b63-7e1d2607961e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:52:10 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b709f492-8505-4330-b003-6a1724523b56" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475\",\r\n \"name\": \"onesdk475\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk475.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "464" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "118730b2-91de-40b5-84b4-94065818102d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "1f0e2ac0-0e92-4492-8cb6-ae3b8c219154" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235301Z:1f0e2ac0-0e92-4492-8cb6-ae3b8c219154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:53:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9571b6d6-2640-4d2b-83f4-2a194b354198" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475\",\r\n \"name\": \"onesdk475\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk475.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "478" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "89873dd2-46cd-491b-8e53-56642f33543d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "8a59382a-6bfd-4b01-8b96-01f1bbe2d6a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235301Z:8a59382a-6bfd-4b01-8b96-01f1bbe2d6a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:53:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dd097a5f-03d6-4609-befb-8a42c2474e24" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk475/databases/onesdk5033' under resource group 'onesdk2821' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ace8a99e-874d-43a4-b2a9-c4d9221ff8de" + ], + "x-ms-correlation-request-id": [ + "ace8a99e-874d-43a4-b2a9-c4d9221ff8de" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235301Z:ace8a99e-874d-43a4-b2a9-c4d9221ff8de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:53:00 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "126" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "74e92bdb-5f0a-46b7-87da-7d333f4513aa" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T16:53:02.754-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "82dcd537-12ba-4d39-915e-a9a74f1663a9" + ], + "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": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "74fa586b-dab6-454a-b07d-84d06ace8e41" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235304Z:74fa586b-dab6-454a-b07d-84d06ace8e41" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:53:03 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvb3BlcmF0aW9uUmVzdWx0cy84MmRjZDUzNy0xMmJhLTRkMzktOTE1ZS1hOWE3NGYxNjYzYTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "74e92bdb-5f0a-46b7-87da-7d333f4513aa" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:53:02.74Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "f5718156-dd11-4992-86a9-4f52f4ea6a26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "277f623d-ee09-4de4-bcab-b13b0a40d9c6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235304Z:277f623d-ee09-4de4-bcab-b13b0a40d9c6" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:53:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvb3BlcmF0aW9uUmVzdWx0cy84MmRjZDUzNy0xMmJhLTRkMzktOTE1ZS1hOWE3NGYxNjYzYTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "74e92bdb-5f0a-46b7-87da-7d333f4513aa" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:53:02.74Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "e7ed5b45-7125-4927-8f39-317772e17f0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "4ab48806-dbd2-4fa8-b605-fa60c9e7dd01" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235335Z:4ab48806-dbd2-4fa8-b605-fa60c9e7dd01" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:53:35 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvb3BlcmF0aW9uUmVzdWx0cy84MmRjZDUzNy0xMmJhLTRkMzktOTE1ZS1hOWE3NGYxNjYzYTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "74e92bdb-5f0a-46b7-87da-7d333f4513aa" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:53:02.74Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "cade7e78-d1bc-4cb2-bd14-3c4f4a95ae51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "346febc3-890d-4713-8d08-e69f94cfe5a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235351Z:346febc3-890d-4713-8d08-e69f94cfe5a8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:53:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvb3BlcmF0aW9uUmVzdWx0cy84MmRjZDUzNy0xMmJhLTRkMzktOTE1ZS1hOWE3NGYxNjYzYTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "74e92bdb-5f0a-46b7-87da-7d333f4513aa" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:53:02.74Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "6e930561-d331-4745-8ba6-a85eba6ddb42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "858cb176-5524-43ac-8386-39d0b78c67e1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235407Z:858cb176-5524-43ac-8386-39d0b78c67e1" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:54:06 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvb3BlcmF0aW9uUmVzdWx0cy84MmRjZDUzNy0xMmJhLTRkMzktOTE1ZS1hOWE3NGYxNjYzYTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "74e92bdb-5f0a-46b7-87da-7d333f4513aa" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033\",\r\n \"name\": \"onesdk5033\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ef55d43f-954c-4829-ba7b-193359586fa0\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:53:03.147Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-20T00:04:17.267Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "820" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "54af87ed-4f3f-4979-ba29-8dc9321c5807" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "605a7548-9cd5-4623-85c5-3f5dd02775c0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235423Z:605a7548-9cd5-4623-85c5-3f5dd02775c0" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:54:23 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3890?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-request-id": [ + "6e672da9-e18f-42c8-aaa7-c514d9926bad" + ], + "x-ms-correlation-request-id": [ + "6e672da9-e18f-42c8-aaa7-c514d9926bad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235423Z:6e672da9-e18f-42c8-aaa7-c514d9926bad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:54:23 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3890?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-request-id": [ + "a1d1eafa-abd7-412b-8241-36ab82a1c6b8" + ], + "x-ms-correlation-request-id": [ + "a1d1eafa-abd7-412b-8241-36ab82a1c6b8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235855Z:a1d1eafa-abd7-412b-8241-36ab82a1c6b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:58:54 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3890?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "34" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890\",\r\n \"name\": \"onesdk3890\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "1dee6712-4d91-48a7-87a7-7557c40a42d1" + ], + "x-ms-correlation-request-id": [ + "1dee6712-4d91-48a7-87a7-7557c40a42d1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235425Z:1dee6712-4d91-48a7-87a7-7557c40a42d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:54:25 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "022ef8ac-57fd-4a8e-aeb6-ba5afa49b3ce" + ], + "x-ms-correlation-request-id": [ + "022ef8ac-57fd-4a8e-aeb6-ba5afa49b3ce" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235425Z:022ef8ac-57fd-4a8e-aeb6-ba5afa49b3ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:54:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3890/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:e5dfddb5-f926-43ac-83a6-bec9f3942866" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "c43e0e37-8c3e-443a-8e3d-ba88b0f08563" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235425Z:c43e0e37-8c3e-443a-8e3d-ba88b0f08563" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:54:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2a5ab04b-b084-4bee-b933-b897d72af72c" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6923' under resource group 'onesdk3890' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2d7000b6-9f22-4269-b3c8-9f7ff27fe880" + ], + "x-ms-correlation-request-id": [ + "2d7000b6-9f22-4269-b3c8-9f7ff27fe880" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235425Z:2d7000b6-9f22-4269-b3c8-9f7ff27fe880" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:54:25 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7280e1dc-8f04-4db2-ad11-2de24ed5d593" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923\",\r\n \"name\": \"onesdk6923\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6923.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "dd6ce2ac-82af-4672-9f9f-456e8061cbbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "ccd58e4e-a4cc-4c24-b958-959a547d9b60" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235511Z:ccd58e4e-a4cc-4c24-b958-959a547d9b60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:55:11 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2bece510-abb6-4fae-8b50-f331628d87a6" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923\",\r\n \"name\": \"onesdk6923\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6923.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "d257ee2d-cafb-4ccb-b425-ae94793cc93b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "09aead74-67bf-40a9-b556-83650e1d2623" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235511Z:09aead74-67bf-40a9-b556-83650e1d2623" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:55:10 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9abd73b8-c45c-45c6-b8ca-7d6939435886" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6923/databases/onesdk5033' under resource group 'onesdk3890' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "cfb33098-7298-4bc2-9446-5c5fb50de748" + ], + "x-ms-correlation-request-id": [ + "cfb33098-7298-4bc2-9446-5c5fb50de748" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235511Z:cfb33098-7298-4bc2-9446-5c5fb50de748" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:55:10 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/Servers/onesdk475/databases/onesdk5033\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "300" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b63780f3-77fe-45c6-8cdb-4b3b89f3152f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T16:55:12.55-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ab2c9399-5541-4fc9-9cd2-a66e1122cdc8" + ], + "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": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "63fd3d53-8f2f-4ecf-bbc4-ecaf254b2652" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235513Z:63fd3d53-8f2f-4ecf-bbc4-ecaf254b2652" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:55:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b63780f3-77fe-45c6-8cdb-4b3b89f3152f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "30e9e6e0-c0cc-49ba-aa65-c76e340e73b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "f3e3f61e-f415-4786-b535-67cc77e1ed9b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235514Z:f3e3f61e-f415-4786-b535-67cc77e1ed9b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:55:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b63780f3-77fe-45c6-8cdb-4b3b89f3152f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cbf563d1-4a89-443d-a5d4-a76b2010b84e" + ], + "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": [ + "ba273167-e8d0-42c7-9510-a2502fd4f030" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235525Z:ba273167-e8d0-42c7-9510-a2502fd4f030" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:55:25 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b63780f3-77fe-45c6-8cdb-4b3b89f3152f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "29d640c0-4660-40ff-96d1-2bbff038859d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "31ceb3c9-f907-4d3c-89dd-b3a5178c4abc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235541Z:31ceb3c9-f907-4d3c-89dd-b3a5178c4abc" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:55:41 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b63780f3-77fe-45c6-8cdb-4b3b89f3152f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "acbb4c19-6713-4d32-9ca6-797400c9296b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "ab1496ff-3fa3-49c2-8f96-42026f279c43" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235557Z:ab1496ff-3fa3-49c2-8f96-42026f279c43" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:55:56 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b63780f3-77fe-45c6-8cdb-4b3b89f3152f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3db27e3b-6bfb-4fb9-aab6-20d601e53c6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "0e38a07c-bff9-4256-8d00-52fd90d20e0f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235612Z:0e38a07c-bff9-4256-8d00-52fd90d20e0f" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:56:12 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b63780f3-77fe-45c6-8cdb-4b3b89f3152f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "337a625d-4a9a-4408-a02a-5da6f85defc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "b75fa0ad-f8a1-4403-9dba-84d1f28adc0b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235628Z:b75fa0ad-f8a1-4403-9dba-84d1f28adc0b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:56:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b63780f3-77fe-45c6-8cdb-4b3b89f3152f" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "7d9f4e78-1490-47de-bb64-63c2e3a9264b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "e6828e13-3b6b-41cf-9e6f-94cc706802ab" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235644Z:e6828e13-3b6b-41cf-9e6f-94cc706802ab" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:56:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b63780f3-77fe-45c6-8cdb-4b3b89f3152f" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033\",\r\n \"name\": \"onesdk5033\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"8ede921c-10f8-4ec9-b0c2-9c7f8e783bf1\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:55:13.943Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-20T00:06:50.017Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "821" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "ce905f62-529d-47e2-a770-1e5a4521863f" + ], + "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": [ + "98aa5b0b-47e0-41d3-9f5b-cd79f2461945" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235700Z:98aa5b0b-47e0-41d3-9f5b-cd79f2461945" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:56:59 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f40df16-3f6b-41a1-ba2e-8a8063a4e035" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923\",\r\n \"name\": \"onesdk6923\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6923.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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 }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "479" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "408b2252-464c-422f-96f7-50856063951c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "d7d38907-03a9-49a3-b995-6bafff924a5e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235700Z:d7d38907-03a9-49a3-b995-6bafff924a5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0b267d9e-4a13-4d13-9770-9b81d01e17a2" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923\",\r\n \"name\": \"onesdk6923\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6923.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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 }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "479" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "174ec36a-4c48-469d-a1fb-a9735e5ffe1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "3c6c2115-0180-45ab-84aa-069dd8eb849a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235701Z:3c6c2115-0180-45ab-84aa-069dd8eb849a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a15fbe89-fddd-4c2e-84ed-f1a796346e82" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923\",\r\n \"name\": \"onesdk6923\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6923.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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 }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "479" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "b4497162-6e7f-4f4a-88c5-83b389a06b33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "b96e4671-c893-4db7-bac8-566a907cfb45" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235702Z:b96e4671-c893-4db7-bac8-566a907cfb45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:02 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a3b5d080-340f-4ca9-ac15-818ec19c764c" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks/adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"name\": \"adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6923\",\r\n \"partnerDatabase\": \"onesdk5033\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:55:54.167\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "e557d071-610e-484f-845d-9106bcbabf71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "38fa41ef-5885-4a33-a57f-9d1f9ca96231" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235701Z:38fa41ef-5885-4a33-a57f-9d1f9ca96231" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ea2d5399-473a-4a79-8794-d470be615325" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks/adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"name\": \"adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6923\",\r\n \"partnerDatabase\": \"onesdk5033\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:55:54.167\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "66246e49-0c52-488c-b674-128a3799cb23" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "512a93c8-e05c-4aa4-b52a-c383a8b72ba9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235702Z:512a93c8-e05c-4aa4-b52a-c383a8b72ba9" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:02 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "6274b4bc-3ba4-43c6-8a8c-735be8dfae30" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks/adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"name\": \"adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6923\",\r\n \"partnerDatabase\": \"onesdk5033\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:55:54.167\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "614" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "a6b19723-57d2-4127-b51a-3fb89d9fea81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "5f3365ef-388c-4133-9024-f3867f14554e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235703Z:5f3365ef-388c-4133-9024-f3867f14554e" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:03 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks/adb7e074-9fb1-45c2-a024-98091f8f2b74?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvcmVwbGljYXRpb25MaW5rcy9hZGI3ZTA3NC05ZmIxLTQ1YzItYTAyNC05ODA5MWY4ZjJiNzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "8e79bed0-a2e6-4914-8d5e-57cdd103d086" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-request-id": [ + "ecad56a7-037c-4115-b684-c03d15ce771a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "1.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "46321ce0-03c9-4cac-8ec9-24331d5ba0d2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235705Z:46321ce0-03c9-4cac-8ec9-24331d5ba0d2" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2821?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "d7507b92-e653-42e9-b8d9-b51df2e65f60" + ], + "x-ms-correlation-request-id": [ + "d7507b92-e653-42e9-b8d9-b51df2e65f60" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235707Z:d7507b92-e653-42e9-b8d9-b51df2e65f60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:07 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "321cf1c9-dc28-434d-971b-2893dd3655c7" + ], + "x-ms-correlation-request-id": [ + "321cf1c9-dc28-434d-971b-2893dd3655c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235708Z:321cf1c9-dc28-434d-971b-2893dd3655c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:08 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "47de3965-733e-4f47-bf3b-76c3640549d2" + ], + "x-ms-correlation-request-id": [ + "47de3965-733e-4f47-bf3b-76c3640549d2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235723Z:47de3965-733e-4f47-bf3b-76c3640549d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:22 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-request-id": [ + "d0636e51-c495-4b7d-824a-df8a5f012afd" + ], + "x-ms-correlation-request-id": [ + "d0636e51-c495-4b7d-824a-df8a5f012afd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235738Z:d0636e51-c495-4b7d-824a-df8a5f012afd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:38 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-request-id": [ + "36bf6c3b-257b-4e0e-a71e-48ef78f3be6c" + ], + "x-ms-correlation-request-id": [ + "36bf6c3b-257b-4e0e-a71e-48ef78f3be6c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235754Z:36bf6c3b-257b-4e0e-a71e-48ef78f3be6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:57:54 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-request-id": [ + "7d0804ef-154e-4833-ac99-5aea493de679" + ], + "x-ms-correlation-request-id": [ + "7d0804ef-154e-4833-ac99-5aea493de679" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235809Z:7d0804ef-154e-4833-ac99-5aea493de679" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:58:08 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "b2ff1d86-8cf8-4fdf-9cbf-bd8a5fe28550" + ], + "x-ms-correlation-request-id": [ + "b2ff1d86-8cf8-4fdf-9cbf-bd8a5fe28550" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235824Z:b2ff1d86-8cf8-4fdf-9cbf-bd8a5fe28550" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:58:24 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-request-id": [ + "eb01d080-8f32-4fcf-b9c5-d632512e3336" + ], + "x-ms-correlation-request-id": [ + "eb01d080-8f32-4fcf-b9c5-d632512e3336" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235839Z:eb01d080-8f32-4fcf-b9c5-d632512e3336" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:58:39 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-request-id": [ + "193727b2-6243-4087-b565-2d05b685340f" + ], + "x-ms-correlation-request-id": [ + "193727b2-6243-4087-b565-2d05b685340f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235855Z:193727b2-6243-4087-b565-2d05b685340f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:58:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3890?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "c8be8166-12c5-434f-983f-b349cd43aba4" + ], + "x-ms-correlation-request-id": [ + "c8be8166-12c5-434f-983f-b349cd43aba4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235857Z:c8be8166-12c5-434f-983f-b349cd43aba4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:58:56 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-request-id": [ + "1a1f70e5-ecc6-487c-86ae-cb5af3ecd51a" + ], + "x-ms-correlation-request-id": [ + "1a1f70e5-ecc6-487c-86ae-cb5af3ecd51a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235857Z:1a1f70e5-ecc6-487c-86ae-cb5af3ecd51a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:58:57 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "cd21d782-0c10-485c-a012-3039ef754309" + ], + "x-ms-correlation-request-id": [ + "cd21d782-0c10-485c-a012-3039ef754309" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235912Z:cd21d782-0c10-485c-a012-3039ef754309" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:59:12 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "1b9d8e0d-d09e-41b9-9d56-bbf2d20b18b1" + ], + "x-ms-correlation-request-id": [ + "1b9d8e0d-d09e-41b9-9d56-bbf2d20b18b1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235927Z:1b9d8e0d-d09e-41b9-9d56-bbf2d20b18b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:59:27 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "36300edf-693a-4b34-95bf-9e1c2d639d48" + ], + "x-ms-correlation-request-id": [ + "36300edf-693a-4b34-95bf-9e1c2d639d48" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235943Z:36300edf-693a-4b34-95bf-9e1c2d639d48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:59:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-request-id": [ + "c7efe702-85e6-4d2c-8563-3e5e21a11068" + ], + "x-ms-correlation-request-id": [ + "c7efe702-85e6-4d2c-8563-3e5e21a11068" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150819T235958Z:c7efe702-85e6-4d2c-8563-3e5e21a11068" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 19 Aug 2015 23:59:57 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "a660258c-a385-406b-ab44-84ba8b6cff14" + ], + "x-ms-correlation-request-id": [ + "a660258c-a385-406b-ab44-84ba8b6cff14" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000013Z:a660258c-a385-406b-ab44-84ba8b6cff14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:00:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "5d026262-a385-428d-9ad6-5ce6e47aa0bd" + ], + "x-ms-correlation-request-id": [ + "5d026262-a385-428d-9ad6-5ce6e47aa0bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000029Z:5d026262-a385-428d-9ad6-5ce6e47aa0bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:00:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "80081d0a-eb4b-46af-9e69-468c3e1765d1" + ], + "x-ms-correlation-request-id": [ + "80081d0a-eb4b-46af-9e69-468c3e1765d1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000044Z:80081d0a-eb4b-46af-9e69-468c3e1765d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:00:43 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RemoveSecondaryDatabase": [ + "onesdk2821", + "onesdk475", + "onesdk5033", + "onesdk3890", + "onesdk6923" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e", + "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b", + "Domain": "aztestorg114.ccsctp.net", + "User": "admin@aztestorg114.ccsctp.net" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabaseV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabaseV2.json new file mode 100644 index 000000000000..a04209db2407 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabaseV2.json @@ -0,0 +1,2710 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk765?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2NT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "85f7e972-c8d4-4d8f-abb2-961a7ebd08a9" + ], + "x-ms-correlation-request-id": [ + "85f7e972-c8d4-4d8f-abb2-961a7ebd08a9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000218Z:85f7e972-c8d4-4d8f-abb2-961a7ebd08a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:18 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk765?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2NT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "120a6216-f6de-4ecd-9bf0-b1b4d5c8509f" + ], + "x-ms-correlation-request-id": [ + "120a6216-f6de-4ecd-9bf0-b1b4d5c8509f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000342Z:120a6216-f6de-4ecd-9bf0-b1b4d5c8509f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:42 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk765?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2NT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765\",\r\n \"name\": \"onesdk765\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "c1aebcb1-ca88-4343-ac7b-84b0072aa906" + ], + "x-ms-correlation-request-id": [ + "c1aebcb1-ca88-4343-ac7b-84b0072aa906" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000218Z:c1aebcb1-ca88-4343-ac7b-84b0072aa906" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:18 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "5c4c6ab0-d998-4d27-87f2-6c51ee63b8bb" + ], + "x-ms-correlation-request-id": [ + "5c4c6ab0-d998-4d27-87f2-6c51ee63b8bb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000218Z:5c4c6ab0-d998-4d27-87f2-6c51ee63b8bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk765/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:7331f270-79f8-4010-9316-98f6a3d24a3a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "e72b4f5e-f025-49ab-859e-82aa1ce1d2af" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000218Z:e72b4f5e-f025-49ab-859e-82aa1ce1d2af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:18 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "387d7228-d8d7-4eb1-b356-e618cd913bc6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7531' under resource group 'onesdk765' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "145" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c931ed72-aa46-4162-945b-003e3da89aa1" + ], + "x-ms-correlation-request-id": [ + "c931ed72-aa46-4162-945b-003e3da89aa1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000219Z:c931ed72-aa46-4162-945b-003e3da89aa1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:18 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b00cfb3e-cccb-469b-89cc-410802aadcd3" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531\",\r\n \"name\": \"onesdk7531\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7531.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "468" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c56070bb-9b25-443e-b98c-4a544d61287e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "0774f343-33b9-406e-8a84-affb4b7508da" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000224Z:0774f343-33b9-406e-8a84-affb4b7508da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:23 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3c71bc41-4931-49fb-ab6f-334dab8ad3db" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531\",\r\n \"name\": \"onesdk7531\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7531.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "482" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "fac2b0dd-a73d-4905-8282-8abe838f7c7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "7ec8b875-a599-4788-855b-d12e767a32e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000224Z:7ec8b875-a599-4788-855b-d12e767a32e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:23 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "84e8992c-d887-469a-91ab-1e3c69fed435" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7531/databases/onesdk9931' under resource group 'onesdk765' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f2ba23b2-e4c5-462c-b96f-36d05444bcdf" + ], + "x-ms-correlation-request-id": [ + "f2ba23b2-e4c5-462c-b96f-36d05444bcdf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000224Z:f2ba23b2-e4c5-462c-b96f-36d05444bcdf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:23 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "130" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "63c69976-dd32-49a8-ac0b-6a36de90f8e8" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-20T00:02:26.186Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "0066e3bb-c754-4ded-9100-19b0304cbeb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "0f1ae316-5053-40b1-853c-f70ee4078b32" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000226Z:0f1ae316-5053-40b1-853c-f70ee4078b32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:25 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/operationResults/ee4ef96b-1a0e-4548-9e4f-667b019f4e52?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/operationResults/ee4ef96b-1a0e-4548-9e4f-667b019f4e52?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvb3BlcmF0aW9uUmVzdWx0cy9lZTRlZjk2Yi0xYTBlLTQ1NDgtOWU0Zi02NjdiMDE5ZjRlNTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "63c69976-dd32-49a8-ac0b-6a36de90f8e8" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-20T00:02:25.483Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "f51f343d-aa9e-4a51-9898-c7b378d702ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "794708cc-e776-4d78-99f8-34469d38610a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000226Z:794708cc-e776-4d78-99f8-34469d38610a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:26 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/operationResults/ee4ef96b-1a0e-4548-9e4f-667b019f4e52?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/operationResults/ee4ef96b-1a0e-4548-9e4f-667b019f4e52?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvb3BlcmF0aW9uUmVzdWx0cy9lZTRlZjk2Yi0xYTBlLTQ1NDgtOWU0Zi02NjdiMDE5ZjRlNTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "63c69976-dd32-49a8-ac0b-6a36de90f8e8" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931\",\r\n \"name\": \"onesdk9931\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ff608baf-eefd-4b3d-823b-3de2ed649254\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-20T00:02:25.79Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-20T00:03:25.79Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "775" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "4e1cf72d-bfd9-44a1-93df-d633fa73cc53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "4f348f75-7e50-4bf0-adc2-3b7f1a30e90a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000257Z:4f348f75-7e50-4bf0-adc2-3b7f1a30e90a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:56 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3936?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "cc7804ab-4f39-4674-bb59-8297c61b2e01" + ], + "x-ms-correlation-request-id": [ + "cc7804ab-4f39-4674-bb59-8297c61b2e01" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000257Z:cc7804ab-4f39-4674-bb59-8297c61b2e01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:56 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3936?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-request-id": [ + "e38e7112-5d42-41a4-9eb4-15722c7851b9" + ], + "x-ms-correlation-request-id": [ + "e38e7112-5d42-41a4-9eb4-15722c7851b9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000528Z:e38e7112-5d42-41a4-9eb4-15722c7851b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:05:28 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3936?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936\",\r\n \"name\": \"onesdk3936\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "181" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-request-id": [ + "9cc8bbae-3d8d-4b71-b452-96cd15d04a00" + ], + "x-ms-correlation-request-id": [ + "9cc8bbae-3d8d-4b71-b452-96cd15d04a00" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000257Z:9cc8bbae-3d8d-4b71-b452-96cd15d04a00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:57 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "1cd27203-1841-42d2-9cac-ada9fc9786b9" + ], + "x-ms-correlation-request-id": [ + "1cd27203-1841-42d2-9cac-ada9fc9786b9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000257Z:1cd27203-1841-42d2-9cac-ada9fc9786b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3936/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:dfbece4b-1854-4498-a2f7-a8a6ca349508" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "b2f4e5ca-0f2a-4872-b216-809521247cec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000257Z:b2f4e5ca-0f2a-4872-b216-809521247cec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:56 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5c7c5034-6cc2-4c33-9fcb-b5f6e0a7c6df" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5438' under resource group 'onesdk3936' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "984ac9ff-fb0e-4273-aa4b-b6fc23bde8ab" + ], + "x-ms-correlation-request-id": [ + "984ac9ff-fb0e-4273-aa4b-b6fc23bde8ab" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000257Z:984ac9ff-fb0e-4273-aa4b-b6fc23bde8ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:02:56 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "75d8dd2b-f541-484a-bf17-90e93105dc64" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438\",\r\n \"name\": \"onesdk5438\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5438.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "fa2bdaaa-7aff-492b-b9ad-68ad03dca4ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "139c74e4-947d-4a19-9faa-d6679b761a32" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000302Z:139c74e4-947d-4a19-9faa-d6679b761a32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "32d1d3c3-d50c-4df6-948c-0f26bca7fda7" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438\",\r\n \"name\": \"onesdk5438\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5438.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "e954502d-059d-4953-915a-9ba066b780f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "80d116fa-7d95-4781-a499-c5cd1419e464" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000302Z:80d116fa-7d95-4781-a499-c5cd1419e464" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4L2RhdGFiYXNlcy9vbmVzZGs5OTMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3a0d84a6-782e-46c4-85ca-04dfe159af84" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5438/databases/onesdk9931' under resource group 'onesdk3936' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6b8bf681-5ddc-4703-ba57-641f5b6c2d5a" + ], + "x-ms-correlation-request-id": [ + "6b8bf681-5ddc-4703-ba57-641f5b6c2d5a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000302Z:6b8bf681-5ddc-4703-ba57-641f5b6c2d5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:01 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4L2RhdGFiYXNlcy9vbmVzZGs5OTMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/Servers/onesdk7531/databases/onesdk9931\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "304" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ecc182f0-b562-4589-92e0-aee4a7567d91" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-20T00:03:11.946Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dd8703de-6cd7-4b6a-ae22-501a276ae5ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-correlation-request-id": [ + "ec8606c8-b1b4-4218-932b-f9d75562824a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000312Z:ec8606c8-b1b4-4218-932b-f9d75562824a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4L2RhdGFiYXNlcy9vbmVzZGs5OTMxL29wZXJhdGlvblJlc3VsdHMvYzhjMjEyM2QtZTFlNy00MWYzLThlMDAtNjM3M2E0ZDUyY2E2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ecc182f0-b562-4589-92e0-aee4a7567d91" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-20T00:03:03.01Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "95a3a436-bc79-4f57-9bc3-2f5d9438c5f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "e90623a9-77aa-4de2-bd60-dc41f670a77a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000312Z:e90623a9-77aa-4de2-bd60-dc41f670a77a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4L2RhdGFiYXNlcy9vbmVzZGs5OTMxL29wZXJhdGlvblJlc3VsdHMvYzhjMjEyM2QtZTFlNy00MWYzLThlMDAtNjM3M2E0ZDUyY2E2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ecc182f0-b562-4589-92e0-aee4a7567d91" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-20T00:03:03.01Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "89e7bb40-3014-4f75-89e7-b0049607f1ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "9fa96f3a-f648-4297-aa32-37445b535b65" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000322Z:9fa96f3a-f648-4297-aa32-37445b535b65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:22 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4L2RhdGFiYXNlcy9vbmVzZGs5OTMxL29wZXJhdGlvblJlc3VsdHMvYzhjMjEyM2QtZTFlNy00MWYzLThlMDAtNjM3M2E0ZDUyY2E2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ecc182f0-b562-4589-92e0-aee4a7567d91" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931\",\r\n \"name\": \"onesdk9931\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"7013d348-3d01-4c38-bf2e-d373b499a948\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-20T00:03:24.34Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-20T00:04:24.34Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "766" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "837edefc-4302-4633-8f76-83cb598bb7d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "dd5777cd-6728-49a7-94a4-a557240dfef6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000338Z:dd5777cd-6728-49a7-94a4-a557240dfef6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:38 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5c7e9b40-426f-4633-ac5b-f16989b857c9" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438\",\r\n \"name\": \"onesdk5438\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5438.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "6c6dfc2d-e82d-4eda-8b72-ba038860208d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "3b41e157-de2f-4c8d-9399-c14126a7e8ab" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000338Z:3b41e157-de2f-4c8d-9399-c14126a7e8ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:38 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e1e5b6c6-c3de-4d6b-ad06-ce0ceeda9c5c" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438\",\r\n \"name\": \"onesdk5438\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5438.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "2500e921-2980-41eb-8897-4e1da4a31f7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "7d1e01eb-eeed-4714-8f49-1b261c2b9a68" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000339Z:7d1e01eb-eeed-4714-8f49-1b261c2b9a68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:38 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5ba6f8d8-71ae-4c86-a4cf-82fc3dce9517" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438\",\r\n \"name\": \"onesdk5438\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5438.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "f600af00-d35d-4f57-a9f1-20830e9dd4d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "553e421a-dc8b-4f5a-99bd-e46fb0092e19" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000339Z:553e421a-dc8b-4f5a-99bd-e46fb0092e19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5b3e3deb-7897-4efc-af96-3af577452354" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"name\": \"c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk5438\",\r\n \"partnerDatabase\": \"onesdk9931\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-20T00:03:11.287Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "ea70b09a-b8f1-4297-a073-7f36d1a0dcde" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "bfb81d24-8cc4-4e1b-9d54-ad1e1accb41b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000339Z:bfb81d24-8cc4-4e1b-9d54-ad1e1accb41b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:38 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "c559bc33-a265-4de4-bae9-ad2c710d529d" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"name\": \"c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk5438\",\r\n \"partnerDatabase\": \"onesdk9931\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-20T00:03:11.287Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "638e1da6-919d-46cf-9794-e4bafbe12264" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "a496bf53-e74e-421b-bc5c-0378ce66092a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000339Z:a496bf53-e74e-421b-bc5c-0378ce66092a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "76b329a7-4972-4e6d-99fe-0aaf7491a87e" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"name\": \"c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk5438\",\r\n \"partnerDatabase\": \"onesdk9931\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-20T00:03:11.287Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "623" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "76887391-6069-4b84-b73b-295b698497b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "9b99fe2a-c62b-4749-b41e-ec1e5ad5f7fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000339Z:9b99fe2a-c62b-4749-b41e-ec1e5ad5f7fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvcmVwbGljYXRpb25MaW5rcy9jOGMyMTIzZC1lMWU3LTQxZjMtOGUwMC02MzczYTRkNTJjYTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "c547a13a-3a58-4ff4-9c64-f5b1523d8442" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "x-ms-request-id": [ + "779f74ce-c1bb-41d7-9f34-cf480a0660be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "1.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-correlation-request-id": [ + "f53a23cb-3eaf-4de6-b21e-f13f3bbaf27f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000342Z:f53a23cb-3eaf-4de6-b21e-f13f3bbaf27f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:41 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk765?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2NT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-request-id": [ + "b10dde7e-7b54-43a2-91f1-6136fb0a0f42" + ], + "x-ms-correlation-request-id": [ + "b10dde7e-7b54-43a2-91f1-6136fb0a0f42" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000342Z:b10dde7e-7b54-43a2-91f1-6136fb0a0f42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-request-id": [ + "df8b2a33-3adc-40d1-a768-b26a2cafd8e3" + ], + "x-ms-correlation-request-id": [ + "df8b2a33-3adc-40d1-a768-b26a2cafd8e3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000342Z:df8b2a33-3adc-40d1-a768-b26a2cafd8e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "10607f32-b137-46eb-bdab-fd6469f9a018" + ], + "x-ms-correlation-request-id": [ + "10607f32-b137-46eb-bdab-fd6469f9a018" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000357Z:10607f32-b137-46eb-bdab-fd6469f9a018" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:03:57 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "f33c29af-3b07-4866-85b7-3c3132f89b85" + ], + "x-ms-correlation-request-id": [ + "f33c29af-3b07-4866-85b7-3c3132f89b85" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000413Z:f33c29af-3b07-4866-85b7-3c3132f89b85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:04:12 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "1eb79629-2372-44d8-b71c-57c98ea66084" + ], + "x-ms-correlation-request-id": [ + "1eb79629-2372-44d8-b71c-57c98ea66084" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000428Z:1eb79629-2372-44d8-b71c-57c98ea66084" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:04:27 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-request-id": [ + "a7d68d67-bfbb-4364-8c0d-93a7a15d5121" + ], + "x-ms-correlation-request-id": [ + "a7d68d67-bfbb-4364-8c0d-93a7a15d5121" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000443Z:a7d68d67-bfbb-4364-8c0d-93a7a15d5121" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:04:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-request-id": [ + "6dc77f71-58c1-4ec0-828a-f61965b24048" + ], + "x-ms-correlation-request-id": [ + "6dc77f71-58c1-4ec0-828a-f61965b24048" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000458Z:6dc77f71-58c1-4ec0-828a-f61965b24048" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:04:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-request-id": [ + "8fd59a9b-77cc-418e-862e-caad8916e165" + ], + "x-ms-correlation-request-id": [ + "8fd59a9b-77cc-418e-862e-caad8916e165" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000513Z:8fd59a9b-77cc-418e-862e-caad8916e165" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:05:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "5d86662b-215e-4294-8209-9eb1ef0530b3" + ], + "x-ms-correlation-request-id": [ + "5d86662b-215e-4294-8209-9eb1ef0530b3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000528Z:5d86662b-215e-4294-8209-9eb1ef0530b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:05:28 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3936?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-request-id": [ + "8cb35a87-2ff8-4c4e-9e1a-506cff4c01e6" + ], + "x-ms-correlation-request-id": [ + "8cb35a87-2ff8-4c4e-9e1a-506cff4c01e6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000528Z:8cb35a87-2ff8-4c4e-9e1a-506cff4c01e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:05:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "f4fb78d8-1423-436f-9cbe-b06451b9c31e" + ], + "x-ms-correlation-request-id": [ + "f4fb78d8-1423-436f-9cbe-b06451b9c31e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000528Z:f4fb78d8-1423-436f-9cbe-b06451b9c31e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:05:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-request-id": [ + "45da8b93-9eff-42f5-a63d-1c99a1ebf4a5" + ], + "x-ms-correlation-request-id": [ + "45da8b93-9eff-42f5-a63d-1c99a1ebf4a5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000543Z:45da8b93-9eff-42f5-a63d-1c99a1ebf4a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:05:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-request-id": [ + "6cf12d7b-1d21-4a3a-a8d5-727d7055c853" + ], + "x-ms-correlation-request-id": [ + "6cf12d7b-1d21-4a3a-a8d5-727d7055c853" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000559Z:6cf12d7b-1d21-4a3a-a8d5-727d7055c853" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:05:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "dd9580ba-e6a5-4149-8311-2d8cb205a15e" + ], + "x-ms-correlation-request-id": [ + "dd9580ba-e6a5-4149-8311-2d8cb205a15e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000614Z:dd9580ba-e6a5-4149-8311-2d8cb205a15e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:06:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "5accf9cc-d869-4a17-8895-2c96e7895810" + ], + "x-ms-correlation-request-id": [ + "5accf9cc-d869-4a17-8895-2c96e7895810" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000629Z:5accf9cc-d869-4a17-8895-2c96e7895810" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:06:29 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "9d1390c4-8fb0-41f3-b63c-a8ff141edcaf" + ], + "x-ms-correlation-request-id": [ + "9d1390c4-8fb0-41f3-b63c-a8ff141edcaf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000644Z:9d1390c4-8fb0-41f3-b63c-a8ff141edcaf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:06:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "0cd1248e-975e-4b9c-8f11-1d6e345a8a38" + ], + "x-ms-correlation-request-id": [ + "0cd1248e-975e-4b9c-8f11-1d6e345a8a38" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000659Z:0cd1248e-975e-4b9c-8f11-1d6e345a8a38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:06:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "b7fdb9c0-83ab-44fe-82f4-bbf09dad2c75" + ], + "x-ms-correlation-request-id": [ + "b7fdb9c0-83ab-44fe-82f4-bbf09dad2c75" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150820T000714Z:b7fdb9c0-83ab-44fe-82f4-bbf09dad2c75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Aug 2015 00:07:14 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RemoveSecondaryDatabaseV2": [ + "onesdk765", + "onesdk7531", + "onesdk9931", + "onesdk3936", + "onesdk5438" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e", + "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b", + "Domain": "aztestorg114.ccsctp.net", + "User": "admin@aztestorg114.ccsctp.net" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopy.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopy.json new file mode 100644 index 000000000000..9c34b1c39161 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopy.json @@ -0,0 +1,3677 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4774?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-request-id": [ + "6f3aa0da-2fdc-494d-849f-8b06f0c5ba97" + ], + "x-ms-correlation-request-id": [ + "6f3aa0da-2fdc-494d-849f-8b06f0c5ba97" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082122Z:6f3aa0da-2fdc-494d-849f-8b06f0c5ba97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:21:22 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4774?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-request-id": [ + "9c9c6708-7498-4828-a85f-60ef9be89e1a" + ], + "x-ms-correlation-request-id": [ + "9c9c6708-7498-4828-a85f-60ef9be89e1a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082755Z:9c9c6708-7498-4828-a85f-60ef9be89e1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:27:54 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4774?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774\",\r\n \"name\": \"onesdk4774\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-request-id": [ + "74f6fb23-067a-426f-a4c4-3ff87e7e1798" + ], + "x-ms-correlation-request-id": [ + "74f6fb23-067a-426f-a4c4-3ff87e7e1798" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082122Z:74f6fb23-067a-426f-a4c4-3ff87e7e1798" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:21:22 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-request-id": [ + "a5e62b68-e1ca-42f8-8bb4-d0bd090a0536" + ], + "x-ms-correlation-request-id": [ + "a5e62b68-e1ca-42f8-8bb4-d0bd090a0536" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082122Z:a5e62b68-e1ca-42f8-8bb4-d0bd090a0536" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:21:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4774/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:48e7c791-a2e1-47a1-880b-1923c463707d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "0e810e02-c644-4432-acb5-8be75b9ebc38" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082123Z:0e810e02-c644-4432-acb5-8be75b9ebc38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:21:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "8b853e20-6a73-444c-89c7-accf42c46566" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6448' under resource group 'onesdk4774' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "da3a8651-0461-48d3-a487-23079a518054" + ], + "x-ms-correlation-request-id": [ + "da3a8651-0461-48d3-a487-23079a518054" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082123Z:da3a8651-0461-48d3-a487-23079a518054" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:21:23 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7c9dce08-4466-485d-8251-591f6b8b9082" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "04e22f59-7891-413a-aa2c-5d6038ab9556" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "f797f6c6-f4c6-409f-8fad-6ca8f6c5f8a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082213Z:f797f6c6-f4c6-409f-8fad-6ca8f6c5f8a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:22:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "61e90fdc-ab86-4f31-8ca3-f27e362239e9" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "acac9565-fa83-4ded-81c2-d25dc8b7dcd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "ea2fa2cb-805f-44ed-84ab-6bcb152a5549" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082415Z:ea2fa2cb-805f-44ed-84ab-6bcb152a5549" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:24:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "fed3316b-8f71-4bbf-9e2e-57e7b639c14e" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "ea3220a0-46f1-4d0b-814f-5567b09cfd54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "f4ebd7fe-4617-4883-bcf9-090738d68e0b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082415Z:f4ebd7fe-4617-4883-bcf9-090738d68e0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:24:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ebff31c2-6d32-4194-951f-eb447fe6fd62" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "4cd7ecda-6745-448a-a7f4-4e11e704fc5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "a46297c3-b86b-4e7b-885c-046010627628" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082604Z:a46297c3-b86b-4e7b-885c-046010627628" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:26:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "6437c158-095f-421e-b496-299787f5b63c" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "593fc9df-c2a9-4c00-9183-2a8f605ab8cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "6a18b672-c71b-474d-9563-c8124c41fa1b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082604Z:6a18b672-c71b-474d-9563-c8124c41fa1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:26:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "db90e225-5163-4d62-94ce-80296429c739" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "5bc823a1-e05f-46c4-8026-fa99d4f3aa28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "25fb22b8-d2ac-4d42-9d83-a57d2ec860de" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082755Z:25fb22b8-d2ac-4d42-9d83-a57d2ec860de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:27:54 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "285c8526-305b-475a-ae20-63d4b7299d52" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c89e1373-df43-469a-add6-0001c347ffcd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "ca99bdb1-cf2d-49a1-b619-0735ff457bb5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082213Z:ca99bdb1-cf2d-49a1-b619-0735ff457bb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:22:13 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b12c94d8-d8e2-4c6f-aa1a-287aea78b8b1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6448/databases/onesdk1626' under resource group 'onesdk4774' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4d3faadc-915e-41b3-ae7b-3321e4a884e1" + ], + "x-ms-correlation-request-id": [ + "4d3faadc-915e-41b3-ae7b-3321e4a884e1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082213Z:4d3faadc-915e-41b3-ae7b-3321e4a884e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:22:13 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "135" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "679afa8d-d67a-41c5-8641-cda980057f8d" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T01:22:14.301-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "e3be2825-e132-4e39-adbf-157d424377a1" + ], + "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": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "d50d77ca-2517-459a-b8bf-493cfd74e356" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082214Z:d50d77ca-2517-459a-b8bf-493cfd74e356" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:22:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2L29wZXJhdGlvblJlc3VsdHMvZTNiZTI4MjUtZTEzMi00ZTM5LWFkYmYtMTU3ZDQyNDM3N2ExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "679afa8d-d67a-41c5-8641-cda980057f8d" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:22:14.27Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "23fa7434-1c27-4cb0-abfc-ae14245cb34c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "7290098d-5a33-4fb1-98d5-b31448788ee5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082215Z:7290098d-5a33-4fb1-98d5-b31448788ee5" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:22:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2L29wZXJhdGlvblJlc3VsdHMvZTNiZTI4MjUtZTEzMi00ZTM5LWFkYmYtMTU3ZDQyNDM3N2ExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "679afa8d-d67a-41c5-8641-cda980057f8d" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:22:14.27Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "67d8fd06-e5f0-414b-9fcd-dace3fd3cc72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "6e045eb2-8e86-433b-a926-10fa723efd48" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082246Z:6e045eb2-8e86-433b-a926-10fa723efd48" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:22:46 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2L29wZXJhdGlvblJlc3VsdHMvZTNiZTI4MjUtZTEzMi00ZTM5LWFkYmYtMTU3ZDQyNDM3N2ExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "679afa8d-d67a-41c5-8641-cda980057f8d" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:22:14.27Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "f88279d6-216c-4f87-88f6-85ca7d2f98b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "a6fbf9e5-e8c7-4688-bfb9-d0cbdc7d384e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082302Z:a6fbf9e5-e8c7-4688-bfb9-d0cbdc7d384e" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:23:01 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2L29wZXJhdGlvblJlc3VsdHMvZTNiZTI4MjUtZTEzMi00ZTM5LWFkYmYtMTU3ZDQyNDM3N2ExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "679afa8d-d67a-41c5-8641-cda980057f8d" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:22:14.27Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "30522881-1ea8-4088-a961-9d275af9bc72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "e66f7a2f-1ba2-4b37-a9b5-9bcd2a729b95" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082317Z:e66f7a2f-1ba2-4b37-a9b5-9bcd2a729b95" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:23:17 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2L29wZXJhdGlvblJlc3VsdHMvZTNiZTI4MjUtZTEzMi00ZTM5LWFkYmYtMTU3ZDQyNDM3N2ExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "679afa8d-d67a-41c5-8641-cda980057f8d" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626\",\r\n \"name\": \"onesdk1626\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ebcd0b01-279b-4431-ac32-1ee0aa949175\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:22:14.707Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:33:23.36Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "818" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "92609fab-9267-448f-b9f2-2e2293553e1c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "99518d7f-1a0a-4740-be39-baecbf4c9e00" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082333Z:99518d7f-1a0a-4740-be39-baecbf4c9e00" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:23:32 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3579?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "f2edd13e-0086-44de-887c-1ffa1f48c37b" + ], + "x-ms-correlation-request-id": [ + "f2edd13e-0086-44de-887c-1ffa1f48c37b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082334Z:f2edd13e-0086-44de-887c-1ffa1f48c37b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:23:33 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3579?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "ec652e55-4983-44ae-9437-32b9e204e7fe" + ], + "x-ms-correlation-request-id": [ + "ec652e55-4983-44ae-9437-32b9e204e7fe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082941Z:ec652e55-4983-44ae-9437-32b9e204e7fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:29:40 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3579?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579\",\r\n \"name\": \"onesdk3579\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "b18d6105-2415-455d-b70f-4de1401bd21e" + ], + "x-ms-correlation-request-id": [ + "b18d6105-2415-455d-b70f-4de1401bd21e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082334Z:b18d6105-2415-455d-b70f-4de1401bd21e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:23:33 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "bd9afaf7-9b55-4bc4-bac9-f992d63dd547" + ], + "x-ms-correlation-request-id": [ + "bd9afaf7-9b55-4bc4-bac9-f992d63dd547" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082334Z:bd9afaf7-9b55-4bc4-bac9-f992d63dd547" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:23:33 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3579/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:112a7a0e-61ea-49ed-8504-9dd88d1eb6ef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "bbd1d4ac-946c-4b2c-b602-3960268c16be" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082334Z:bbd1d4ac-946c-4b2c-b602-3960268c16be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:23:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7ebd45aa-cd9a-4f2d-829f-76c260a4617f" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk4673' under resource group 'onesdk3579' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "441dab49-adaf-4575-9516-a9f5eb53e2a7" + ], + "x-ms-correlation-request-id": [ + "441dab49-adaf-4575-9516-a9f5eb53e2a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082334Z:441dab49-adaf-4575-9516-a9f5eb53e2a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:23:33 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "60ba666c-0aeb-41d8-a3f5-320295c29f2d" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673\",\r\n \"name\": \"onesdk4673\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4673.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "27ca6842-f488-4394-b5be-363ed7191ab9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "53d0f613-09c2-43ad-a84a-fd9c37fbc9ba" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082604Z:53d0f613-09c2-43ad-a84a-fd9c37fbc9ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:26:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4d7f662a-f3ef-4581-bf1e-a981901aab13" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673\",\r\n \"name\": \"onesdk4673\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4673.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "5112a1f8-1481-476c-8dda-f2f5a1d7f393" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "1bbb1289-4e9d-4563-bc05-1d7214586ca9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082415Z:1bbb1289-4e9d-4563-bc05-1d7214586ca9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:24:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "c537db19-e545-407b-ac5c-0c0d8269e263" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6448/databases/onesdk846' under resource group 'onesdk4774' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "51dcc8b2-e13a-4170-9bbe-3fc5d8ec668c" + ], + "x-ms-correlation-request-id": [ + "51dcc8b2-e13a-4170-9bbe-3fc5d8ec668c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082415Z:51dcc8b2-e13a-4170-9bbe-3fc5d8ec668c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:24:15 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/Servers/onesdk6448/databases/onesdk1626\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "270" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "708cc8ab-d0dc-4915-91be-63f60abdc86e" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T01:24:16.636-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e8806be1-ce7d-439e-9019-18efc99da8f9" + ], + "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": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "406e117c-fbca-406e-8d18-d72fc06b29db" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082417Z:406e117c-fbca-406e-8d18-d72fc06b29db" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:24:17 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "708cc8ab-d0dc-4915-91be-63f60abdc86e" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:16.527Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6a7d835a-4ed2-42f4-897d-a5a5fad35e10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "f7f20140-81b5-4fce-9875-bad95a2b542b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082417Z:f7f20140-81b5-4fce-9875-bad95a2b542b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:24:17 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "708cc8ab-d0dc-4915-91be-63f60abdc86e" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f9560280-4bb3-438c-83ec-7fed4c0594f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "68fed7a1-95da-43dd-8c55-d9ce1e5bb79c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082428Z:68fed7a1-95da-43dd-8c55-d9ce1e5bb79c" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:24:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "708cc8ab-d0dc-4915-91be-63f60abdc86e" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "54dd1ddb-0a5f-40d9-a4fd-625da2249402" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "799042a6-6e1b-406f-b703-5ecf70b8301b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082444Z:799042a6-6e1b-406f-b703-5ecf70b8301b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:24:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "708cc8ab-d0dc-4915-91be-63f60abdc86e" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "29e27ae8-ae1e-4a90-88cd-cc10fdf0fc54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "932bee03-10ee-4eb8-ac48-02e085f9156b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082500Z:932bee03-10ee-4eb8-ac48-02e085f9156b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:24:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "708cc8ab-d0dc-4915-91be-63f60abdc86e" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b6afba57-57ac-43fa-b0e0-74a595c0d9c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "fcfb4d5e-a4f6-4f9f-ac24-6c4722cee3d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082516Z:fcfb4d5e-a4f6-4f9f-ac24-6c4722cee3d8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:25:15 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "708cc8ab-d0dc-4915-91be-63f60abdc86e" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "4dcbc17c-49ba-47c6-91f2-4c542b155f56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "235c2390-ff26-4c2f-a29b-f971bbe8ecb0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082532Z:235c2390-ff26-4c2f-a29b-f971bbe8ecb0" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:25:32 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "708cc8ab-d0dc-4915-91be-63f60abdc86e" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "bdda7fde-e905-4c32-8771-b7b220929506" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "fd8eae6b-3c51-40f7-9b4a-9b70b236a747" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082547Z:fd8eae6b-3c51-40f7-9b4a-9b70b236a747" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:25:47 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "708cc8ab-d0dc-4915-91be-63f60abdc86e" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846\",\r\n \"name\": \"onesdk846\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1379781f-0975-42de-abe8-0fefbaf6477f\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-07T08:24:18.543Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:36:01.42Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "819" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "c6f73c69-d6a8-45a9-b7d3-6f7308a05f83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "6817071d-bbd4-4394-befb-61fbce15ef49" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082603Z:6817071d-bbd4-4394-befb-61fbce15ef49" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:26:02 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "c5b87bee-257e-41ce-af10-f5477da1ccd4" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk4673/databases/onesdk846' under resource group 'onesdk3579' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1b2d2ccf-eb4d-4ac9-adbd-e583286480a5" + ], + "x-ms-correlation-request-id": [ + "1b2d2ccf-eb4d-4ac9-adbd-e583286480a5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082604Z:1b2d2ccf-eb4d-4ac9-adbd-e583286480a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:26:04 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/Servers/onesdk6448/databases/onesdk1626\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "270" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2f871237-2d34-434e-bec9-e44c91b12275" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T01:26:06.94-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "182d09b4-6046-4bcb-9f86-03c3dd62f106" + ], + "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": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "70d301ed-56b7-426b-8bec-f116f4e04643" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082607Z:70d301ed-56b7-426b-8bec-f116f4e04643" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:26:07 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2f871237-2d34-434e-bec9-e44c91b12275" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f4a38507-6e8a-46fe-9e37-2ad94a44aaf7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "ddfef490-8b1d-400c-936f-6817bfd8b9b9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082608Z:ddfef490-8b1d-400c-936f-6817bfd8b9b9" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:26:07 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2f871237-2d34-434e-bec9-e44c91b12275" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "718a77b7-1d8e-40e9-9377-5a0f9662de08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "08060932-1936-4695-b170-5e595df227a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082619Z:08060932-1936-4695-b170-5e595df227a6" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:26:19 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2f871237-2d34-434e-bec9-e44c91b12275" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "92cf05b7-13d5-431c-9e31-f8670fcb423d" + ], + "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": [ + "9ea5af7d-add4-441a-ba9e-7c39eecff818" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082635Z:9ea5af7d-add4-441a-ba9e-7c39eecff818" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:26:35 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2f871237-2d34-434e-bec9-e44c91b12275" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a836ff34-74e5-4e1e-ad56-19a545a6637a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "8c1e651e-1661-46cb-af7c-6acd9647aea1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082651Z:8c1e651e-1661-46cb-af7c-6acd9647aea1" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:26:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2f871237-2d34-434e-bec9-e44c91b12275" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ff742259-46a8-476b-9476-9b57d740c1ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "684b1957-cdeb-4ccf-9751-ebc33b8dbd85" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082707Z:684b1957-cdeb-4ccf-9751-ebc33b8dbd85" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:27:06 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2f871237-2d34-434e-bec9-e44c91b12275" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "28931580-980d-4366-a8a8-708db23765c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "10c36b73-f62a-4503-8ee8-76c4f993009a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082723Z:10c36b73-f62a-4503-8ee8-76c4f993009a" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:27:23 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2f871237-2d34-434e-bec9-e44c91b12275" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "ea09af17-10d0-422b-b88c-080370ae49f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "5f932634-e9e8-4117-8f52-b7f6f52d3ac5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082738Z:5f932634-e9e8-4117-8f52-b7f6f52d3ac5" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:27:38 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2f871237-2d34-434e-bec9-e44c91b12275" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846\",\r\n \"name\": \"onesdk846\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"0b645d84-6ec3-48e8-9b46-50e8ae932275\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-07T08:26:07.973Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:37:47.963Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "820" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "d079f593-a201-4327-96e6-39dbce7c62b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "db1693ae-8484-4205-924b-89f3c85a58fe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082754Z:db1693ae-8484-4205-924b-89f3c85a58fe" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:27:54 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4774?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-request-id": [ + "9427f2ed-d39f-4ba8-9462-f26a9060d862" + ], + "x-ms-correlation-request-id": [ + "9427f2ed-d39f-4ba8-9462-f26a9060d862" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082755Z:9427f2ed-d39f-4ba8-9462-f26a9060d862" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:27:55 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-request-id": [ + "d33001f9-5167-4518-b153-d998a9dd8a16" + ], + "x-ms-correlation-request-id": [ + "d33001f9-5167-4518-b153-d998a9dd8a16" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082755Z:d33001f9-5167-4518-b153-d998a9dd8a16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:27:55 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "51d7c068-1b5b-46dc-bf57-99bc1a352de2" + ], + "x-ms-correlation-request-id": [ + "51d7c068-1b5b-46dc-bf57-99bc1a352de2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082810Z:51d7c068-1b5b-46dc-bf57-99bc1a352de2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:28:10 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "93409a75-6a5b-4e29-b962-cd85494c22b5" + ], + "x-ms-correlation-request-id": [ + "93409a75-6a5b-4e29-b962-cd85494c22b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082825Z:93409a75-6a5b-4e29-b962-cd85494c22b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:28:24 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "490b55f5-fce0-4ad3-a359-069bfbee6784" + ], + "x-ms-correlation-request-id": [ + "490b55f5-fce0-4ad3-a359-069bfbee6784" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082841Z:490b55f5-fce0-4ad3-a359-069bfbee6784" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:28:40 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-request-id": [ + "a49c9587-6bf2-4982-a0c6-601954784902" + ], + "x-ms-correlation-request-id": [ + "a49c9587-6bf2-4982-a0c6-601954784902" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082856Z:a49c9587-6bf2-4982-a0c6-601954784902" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:28:55 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-request-id": [ + "bd06554d-b6c6-438f-9738-b6b734ceea36" + ], + "x-ms-correlation-request-id": [ + "bd06554d-b6c6-438f-9738-b6b734ceea36" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082911Z:bd06554d-b6c6-438f-9738-b6b734ceea36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:29:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-request-id": [ + "d7227c0d-7034-46f0-89c6-e5a37e8a0a5d" + ], + "x-ms-correlation-request-id": [ + "d7227c0d-7034-46f0-89c6-e5a37e8a0a5d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082926Z:d7227c0d-7034-46f0-89c6-e5a37e8a0a5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:29:26 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "1c90d773-fbd3-4376-bf0d-55160238d080" + ], + "x-ms-correlation-request-id": [ + "1c90d773-fbd3-4376-bf0d-55160238d080" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082941Z:1c90d773-fbd3-4376-bf0d-55160238d080" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:29:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3579?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "3845272a-5a9c-4c6f-a9b9-c617b9d939e9" + ], + "x-ms-correlation-request-id": [ + "3845272a-5a9c-4c6f-a9b9-c617b9d939e9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082941Z:3845272a-5a9c-4c6f-a9b9-c617b9d939e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:29:41 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "3ad6f577-ed3b-4fe4-8446-160b64f88d1c" + ], + "x-ms-correlation-request-id": [ + "3ad6f577-ed3b-4fe4-8446-160b64f88d1c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082941Z:3ad6f577-ed3b-4fe4-8446-160b64f88d1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:29:41 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-request-id": [ + "8531197f-a54d-4d96-ae69-8d0089f4a447" + ], + "x-ms-correlation-request-id": [ + "8531197f-a54d-4d96-ae69-8d0089f4a447" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082956Z:8531197f-a54d-4d96-ae69-8d0089f4a447" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:29:56 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "f697e231-b910-4683-bc46-b33557c3dfec" + ], + "x-ms-correlation-request-id": [ + "f697e231-b910-4683-bc46-b33557c3dfec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083011Z:f697e231-b910-4683-bc46-b33557c3dfec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:30:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-request-id": [ + "c1106818-be07-49b8-a6e4-f66f2b4441e6" + ], + "x-ms-correlation-request-id": [ + "c1106818-be07-49b8-a6e4-f66f2b4441e6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083027Z:c1106818-be07-49b8-a6e4-f66f2b4441e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:30:27 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-request-id": [ + "afd7d7cc-b6c5-4122-a6be-b8f26f0dda1f" + ], + "x-ms-correlation-request-id": [ + "afd7d7cc-b6c5-4122-a6be-b8f26f0dda1f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083042Z:afd7d7cc-b6c5-4122-a6be-b8f26f0dda1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:30:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-request-id": [ + "1d29364c-ee61-4823-aa15-bd5671c5891d" + ], + "x-ms-correlation-request-id": [ + "1d29364c-ee61-4823-aa15-bd5671c5891d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083057Z:1d29364c-ee61-4823-aa15-bd5671c5891d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:30:56 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-request-id": [ + "1bf41c06-9da0-4d22-a896-d76b376fd80a" + ], + "x-ms-correlation-request-id": [ + "1bf41c06-9da0-4d22-a896-d76b376fd80a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083112Z:1bf41c06-9da0-4d22-a896-d76b376fd80a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:31:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-request-id": [ + "c6067e6e-e996-4874-8f6e-680c64ae7c9a" + ], + "x-ms-correlation-request-id": [ + "c6067e6e-e996-4874-8f6e-680c64ae7c9a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083127Z:c6067e6e-e996-4874-8f6e-680c64ae7c9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:31:27 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateDatabaseCopy": [ + "onesdk4774", + "onesdk6448", + "onesdk1626", + "onesdk3579", + "onesdk4673", + "onesdk846" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopyV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopyV2.json new file mode 100644 index 000000000000..448923a6c13e --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopyV2.json @@ -0,0 +1,2087 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2855?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "d1218424-5237-452f-a74c-8f6372c29770" + ], + "x-ms-correlation-request-id": [ + "d1218424-5237-452f-a74c-8f6372c29770" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081653Z:d1218424-5237-452f-a74c-8f6372c29770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:16:53 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2855?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "3d3bf6fd-d4b5-4e39-895f-2762f1d12802" + ], + "x-ms-correlation-request-id": [ + "3d3bf6fd-d4b5-4e39-895f-2762f1d12802" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081712Z:3d3bf6fd-d4b5-4e39-895f-2762f1d12802" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:11 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2855?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855\",\r\n \"name\": \"onesdk2855\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "aba805b5-ec0c-42e4-a088-a116eb39c8f7" + ], + "x-ms-correlation-request-id": [ + "aba805b5-ec0c-42e4-a088-a116eb39c8f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081654Z:aba805b5-ec0c-42e4-a088-a116eb39c8f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:16:53 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "6fb90e9f-05e5-452c-bc91-6b0e13bab4bd" + ], + "x-ms-correlation-request-id": [ + "6fb90e9f-05e5-452c-bc91-6b0e13bab4bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081654Z:6fb90e9f-05e5-452c-bc91-6b0e13bab4bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:16:53 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2855/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:a64d0b8c-6ed1-485f-916e-1b260c67f9c8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "d9dd4780-0189-4e54-b8ee-39c9007d9f33" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081654Z:d9dd4780-0189-4e54-b8ee-39c9007d9f33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:16:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "65960da2-ca51-4f4c-8b7d-b0f89606a869" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2719' under resource group 'onesdk2855' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "dff1d91d-6841-4288-89b8-10be06cb3d2d" + ], + "x-ms-correlation-request-id": [ + "dff1d91d-6841-4288-89b8-10be06cb3d2d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081655Z:dff1d91d-6841-4288-89b8-10be06cb3d2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:16:54 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0d65ba10-5d80-49d7-8bba-a28ae6ba5b73" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719\",\r\n \"name\": \"onesdk2719\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2719.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "4f5ddc43-fac6-4338-bdf5-2dfb76a811aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "04c60c00-5306-42f2-8959-48c5a595b6ae" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081700Z:04c60c00-5306-42f2-8959-48c5a595b6ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "262eb636-40ff-475e-b93e-3b28523cd6d2" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719\",\r\n \"name\": \"onesdk2719\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2719.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "edb9155c-13fb-4d23-a454-2c55020f15a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "c3b0ccb5-8249-4c13-82ba-4d1327a0cd3a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081710Z:c3b0ccb5-8249-4c13-82ba-4d1327a0cd3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:10 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3f153826-4618-452a-9104-e96bdd89eed9" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719\",\r\n \"name\": \"onesdk2719\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2719.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "22ad3441-0fec-41c0-a5ca-a1a1355be005" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "de67a4ad-09ed-4b61-b489-d737b3447f00" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081711Z:de67a4ad-09ed-4b61-b489-d737b3447f00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:10 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "cc5fa0ca-a828-4746-a376-a37c82ddf32a" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719\",\r\n \"name\": \"onesdk2719\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2719.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "66b36f7c-39c6-42a4-9f1f-3a659a03b869" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "f0930b76-65eb-4700-a584-bb38ef4a18da" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081700Z:f0930b76-65eb-4700-a584-bb38ef4a18da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719/databases/onesdk8152?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5L2RhdGFiYXNlcy9vbmVzZGs4MTUyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b1969a61-865b-497e-8187-efafb4f5b995" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2719/databases/onesdk8152' under resource group 'onesdk2855' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "852fba86-a251-4243-ac50-2b5dd3e01c23" + ], + "x-ms-correlation-request-id": [ + "852fba86-a251-4243-ac50-2b5dd3e01c23" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081700Z:852fba86-a251-4243-ac50-2b5dd3e01c23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:00 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719/databases/onesdk8152?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5L2RhdGFiYXNlcy9vbmVzZGs4MTUyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "139" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "970f3946-8b8e-47a6-a39e-6c6aa78da3a7" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719/databases/onesdk8152\",\r\n \"name\": \"onesdk8152\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"6397be6a-63d7-4956-9e4b-6c46d3904692\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:17:03.3Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:18:03.3Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "772" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "a205459f-55d4-4269-9def-72a279b95e94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "ee54156a-2831-4223-99f5-63e6e6991afe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081705Z:ee54156a-2831-4223-99f5-63e6e6991afe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:04 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9908?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "55ab5d74-e9fb-4e01-8f24-71ef0f071bb2" + ], + "x-ms-correlation-request-id": [ + "55ab5d74-e9fb-4e01-8f24-71ef0f071bb2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081705Z:55ab5d74-e9fb-4e01-8f24-71ef0f071bb2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:04 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9908?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "f3cb1455-ed5b-42d1-8daa-d93e58cb2424" + ], + "x-ms-correlation-request-id": [ + "f3cb1455-ed5b-42d1-8daa-d93e58cb2424" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081858Z:f3cb1455-ed5b-42d1-8daa-d93e58cb2424" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:18:57 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9908?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9908\",\r\n \"name\": \"onesdk9908\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "f7703c6a-7635-4287-af9f-ed9abd28b4cb" + ], + "x-ms-correlation-request-id": [ + "f7703c6a-7635-4287-af9f-ed9abd28b4cb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081705Z:f7703c6a-7635-4287-af9f-ed9abd28b4cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:04 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9908/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "19f428f3-8297-42d3-b60a-040a101f1536" + ], + "x-ms-correlation-request-id": [ + "19f428f3-8297-42d3-b60a-040a101f1536" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081705Z:19f428f3-8297-42d3-b60a-040a101f1536" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9908/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:4f5f2b73-54de-4ce8-bdc9-2622ac9d3c8d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "35853433-6dda-4e7f-9efd-fb506afed4a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081705Z:35853433-6dda-4e7f-9efd-fb506afed4a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9908/providers/Microsoft.Sql/servers/onesdk1006?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDA2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "f2f693dc-bc3c-4366-a571-5acce5f49153" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1006' under resource group 'onesdk9908' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9a90d615-e3ba-432c-9cc3-93eb9a5f413e" + ], + "x-ms-correlation-request-id": [ + "9a90d615-e3ba-432c-9cc3-93eb9a5f413e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081705Z:9a90d615-e3ba-432c-9cc3-93eb9a5f413e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:04 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9908/providers/Microsoft.Sql/servers/onesdk1006?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDA2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "71cb1794-8bb3-4e10-9046-a62de86fbae2" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9908/providers/Microsoft.Sql/servers/onesdk1006\",\r\n \"name\": \"onesdk1006\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1006.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "6c8bfcb7-8440-43a2-b71a-fe2772d7edfe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "656f2eea-d60d-4cd1-93a5-a73133b58c7b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081710Z:656f2eea-d60d-4cd1-93a5-a73133b58c7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:10 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719/databases/onesdk9102?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5L2RhdGFiYXNlcy9vbmVzZGs5MTAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "f65f55f9-1f17-4532-b237-414983fa2320" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2719/databases/onesdk9102' under resource group 'onesdk2855' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "af7dab81-d6e9-45c6-892a-a69a3c84f660" + ], + "x-ms-correlation-request-id": [ + "af7dab81-d6e9-45c6-892a-a69a3c84f660" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081710Z:af7dab81-d6e9-45c6-892a-a69a3c84f660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:10 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719/databases/onesdk9102?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5L2RhdGFiYXNlcy9vbmVzZGs5MTAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/Servers/onesdk2719/databases/onesdk8152\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "274" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2660de68-0727-4861-a3c6-b7d077d58b03" + ] + }, + "ResponseBody": "{\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"details\": [\r\n {\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"severity\": \"16\"\r\n }\r\n ],\r\n \"innererror\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "305" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "151bc3b9-495e-40bb-8488-0aed59272b52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "3384ae4f-af8c-42fc-a584-cffa9ee66e40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081711Z:3384ae4f-af8c-42fc-a584-cffa9ee66e40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:11 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2855?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "be87ce89-fe81-497f-89c5-1f9fdfc754f2" + ], + "x-ms-correlation-request-id": [ + "be87ce89-fe81-497f-89c5-1f9fdfc754f2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081712Z:be87ce89-fe81-497f-89c5-1f9fdfc754f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "26da21fa-29fe-4f55-8597-bcc470399548" + ], + "x-ms-correlation-request-id": [ + "26da21fa-29fe-4f55-8597-bcc470399548" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081712Z:26da21fa-29fe-4f55-8597-bcc470399548" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:12 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "95faf65b-0bcb-4b93-b71a-4b925f9f9532" + ], + "x-ms-correlation-request-id": [ + "95faf65b-0bcb-4b93-b71a-4b925f9f9532" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081727Z:95faf65b-0bcb-4b93-b71a-4b925f9f9532" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:26 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "2f45e26f-0f21-4023-9f1e-e1dc2d89909c" + ], + "x-ms-correlation-request-id": [ + "2f45e26f-0f21-4023-9f1e-e1dc2d89909c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081742Z:2f45e26f-0f21-4023-9f1e-e1dc2d89909c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "c7688de6-740c-4c6c-8431-ac4f1cadd8ec" + ], + "x-ms-correlation-request-id": [ + "c7688de6-740c-4c6c-8431-ac4f1cadd8ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081757Z:c7688de6-740c-4c6c-8431-ac4f1cadd8ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:17:56 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "0697d92a-a04c-4f7b-9982-a59180035f33" + ], + "x-ms-correlation-request-id": [ + "0697d92a-a04c-4f7b-9982-a59180035f33" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081812Z:0697d92a-a04c-4f7b-9982-a59180035f33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:18:12 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "59660a96-4846-4c16-8223-d308c034a042" + ], + "x-ms-correlation-request-id": [ + "59660a96-4846-4c16-8223-d308c034a042" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081827Z:59660a96-4846-4c16-8223-d308c034a042" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:18:27 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "bd91387c-459f-42ec-978f-23653bf57b9c" + ], + "x-ms-correlation-request-id": [ + "bd91387c-459f-42ec-978f-23653bf57b9c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081842Z:bd91387c-459f-42ec-978f-23653bf57b9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:18:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "cde053c8-4441-437d-8f9d-26c66dc3c03a" + ], + "x-ms-correlation-request-id": [ + "cde053c8-4441-437d-8f9d-26c66dc3c03a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081857Z:cde053c8-4441-437d-8f9d-26c66dc3c03a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:18:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9908?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-request-id": [ + "56263544-7553-41c1-a5ce-a77130028fe1" + ], + "x-ms-correlation-request-id": [ + "56263544-7553-41c1-a5ce-a77130028fe1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081858Z:56263544-7553-41c1-a5ce-a77130028fe1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:18:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "73a4ee52-b4b4-43a2-a333-5fc1fc32f137" + ], + "x-ms-correlation-request-id": [ + "73a4ee52-b4b4-43a2-a333-5fc1fc32f137" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081858Z:73a4ee52-b4b4-43a2-a333-5fc1fc32f137" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:18:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "deba4ae4-5749-4096-8173-a1549ee96c98" + ], + "x-ms-correlation-request-id": [ + "deba4ae4-5749-4096-8173-a1549ee96c98" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081913Z:deba4ae4-5749-4096-8173-a1549ee96c98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:19:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "753683ab-bc15-427f-ab33-087224a4bba4" + ], + "x-ms-correlation-request-id": [ + "753683ab-bc15-427f-ab33-087224a4bba4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081928Z:753683ab-bc15-427f-ab33-087224a4bba4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:19:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "821cfc54-ed7c-4c32-9c8a-77d22cf99859" + ], + "x-ms-correlation-request-id": [ + "821cfc54-ed7c-4c32-9c8a-77d22cf99859" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081943Z:821cfc54-ed7c-4c32-9c8a-77d22cf99859" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:19:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "ecc7e947-ccb9-4826-bb33-160d104dfad8" + ], + "x-ms-correlation-request-id": [ + "ecc7e947-ccb9-4826-bb33-160d104dfad8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T081958Z:ecc7e947-ccb9-4826-bb33-160d104dfad8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:19:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-request-id": [ + "58ef8c7e-3ea6-4a35-b7d5-43e90cb6bdbd" + ], + "x-ms-correlation-request-id": [ + "58ef8c7e-3ea6-4a35-b7d5-43e90cb6bdbd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082013Z:58ef8c7e-3ea6-4a35-b7d5-43e90cb6bdbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:20:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-request-id": [ + "db1fc7db-483d-4068-855e-b45212ee6a81" + ], + "x-ms-correlation-request-id": [ + "db1fc7db-483d-4068-855e-b45212ee6a81" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082029Z:db1fc7db-483d-4068-855e-b45212ee6a81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:20:29 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-request-id": [ + "ba576a67-367b-4b94-bea4-de111dde8330" + ], + "x-ms-correlation-request-id": [ + "ba576a67-367b-4b94-bea4-de111dde8330" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T082044Z:ba576a67-367b-4b94-bea4-de111dde8330" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:20:44 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateDatabaseCopyV2": [ + "onesdk2855", + "onesdk2719", + "onesdk8152", + "onesdk9908", + "onesdk1006", + "onesdk9102" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabase.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabase.json new file mode 100644 index 000000000000..0d7f52fe19b6 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabase.json @@ -0,0 +1,3166 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2932?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5MzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-request-id": [ + "4c8f725a-3f88-4912-a410-4687e9233c9e" + ], + "x-ms-correlation-request-id": [ + "4c8f725a-3f88-4912-a410-4687e9233c9e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084129Z:4c8f725a-3f88-4912-a410-4687e9233c9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:41:29 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2932?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5MzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "15ed83d2-cab3-4a18-9f2d-f569c4da0e5b" + ], + "x-ms-correlation-request-id": [ + "15ed83d2-cab3-4a18-9f2d-f569c4da0e5b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084809Z:15ed83d2-cab3-4a18-9f2d-f569c4da0e5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:48:09 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2932?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5MzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932\",\r\n \"name\": \"onesdk2932\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "555ce0f6-44a3-4917-8b63-d7a898ae762a" + ], + "x-ms-correlation-request-id": [ + "555ce0f6-44a3-4917-8b63-d7a898ae762a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084129Z:555ce0f6-44a3-4917-8b63-d7a898ae762a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:41:29 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "00525a98-baf7-45cf-bcc9-1f1edec17f36" + ], + "x-ms-correlation-request-id": [ + "00525a98-baf7-45cf-bcc9-1f1edec17f36" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084129Z:00525a98-baf7-45cf-bcc9-1f1edec17f36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:41:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2932/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:1afff3ad-1691-4cc1-b75c-2dc3213d146b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "876a3383-9396-43a7-9e57-f22ef14eaae7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084129Z:876a3383-9396-43a7-9e57-f22ef14eaae7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:41:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9912142f-3eee-4019-85aa-69b7821b49b1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3401' under resource group 'onesdk2932' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "0de117f8-4545-44bf-acf9-4806f043b249" + ], + "x-ms-correlation-request-id": [ + "0de117f8-4545-44bf-acf9-4806f043b249" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084130Z:0de117f8-4545-44bf-acf9-4806f043b249" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:41:30 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "84f3468e-4674-4b9b-92b8-d577f04e131a" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401\",\r\n \"name\": \"onesdk3401\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3401.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "d4918bfa-397c-4e32-a83d-e5510eaed3e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "2cb0fc91-2fbf-4158-972b-8259936b8794" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084223Z:2cb0fc91-2fbf-4158-972b-8259936b8794" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:42:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "fc059639-0cb2-48f8-8e1c-1dc06d41f4d6" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401\",\r\n \"name\": \"onesdk3401\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3401.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "8e8469e2-9ae4-4f3f-ac11-68ee518a97e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-correlation-request-id": [ + "83fce129-019e-4c1d-a90d-6584996c9968" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084222Z:83fce129-019e-4c1d-a90d-6584996c9968" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:42:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ff2c9876-d098-488e-accd-80db759a441c" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3401/databases/onesdk7487' under resource group 'onesdk2932' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "db779b91-67c3-4367-b39b-fb948296fef9" + ], + "x-ms-correlation-request-id": [ + "db779b91-67c3-4367-b39b-fb948296fef9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084222Z:db779b91-67c3-4367-b39b-fb948296fef9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:42:22 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "135" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4804cdaf-ed6d-4589-9c4d-4eacb85a8624" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T01:42:24-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "1f637989-0e8f-472f-a3f5-61f7f0872ba5" + ], + "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": [ + "1178" + ], + "x-ms-correlation-request-id": [ + "7bb0cf15-84d9-4d94-9fdc-2298548c284b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084224Z:7bb0cf15-84d9-4d94-9fdc-2298548c284b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:42:24 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvMWY2Mzc5ODktMGU4Zi00NzJmLWEzZjUtNjFmN2YwODcyYmE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4804cdaf-ed6d-4589-9c4d-4eacb85a8624" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:42:23.983Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "569dbacb-64f9-4799-a5fd-22d7e181effd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "02070ae0-9faf-4d7e-949d-331509dec5b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084225Z:02070ae0-9faf-4d7e-949d-331509dec5b2" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:42:24 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvMWY2Mzc5ODktMGU4Zi00NzJmLWEzZjUtNjFmN2YwODcyYmE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4804cdaf-ed6d-4589-9c4d-4eacb85a8624" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:42:23.983Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "b0a2512c-2a37-4b71-a73e-2994d890ed1b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "697f6ba7-f4a7-4d1b-885f-297c7f4ae816" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084256Z:697f6ba7-f4a7-4d1b-885f-297c7f4ae816" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:42:56 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvMWY2Mzc5ODktMGU4Zi00NzJmLWEzZjUtNjFmN2YwODcyYmE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4804cdaf-ed6d-4589-9c4d-4eacb85a8624" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:42:23.983Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "026a0d32-9298-4ae6-93e5-6fbe7b33b0a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "3c8a2477-9dc3-4cc3-8419-53220f425ecf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084312Z:3c8a2477-9dc3-4cc3-8419-53220f425ecf" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:43:12 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvMWY2Mzc5ODktMGU4Zi00NzJmLWEzZjUtNjFmN2YwODcyYmE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4804cdaf-ed6d-4589-9c4d-4eacb85a8624" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:42:23.983Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "2603d7e0-9e1b-40a9-91e4-1b773eb3bd92" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "4325c72d-05e3-43b0-9c53-5b6e6e7faa3d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084328Z:4325c72d-05e3-43b0-9c53-5b6e6e7faa3d" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:43:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvMWY2Mzc5ODktMGU4Zi00NzJmLWEzZjUtNjFmN2YwODcyYmE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4804cdaf-ed6d-4589-9c4d-4eacb85a8624" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487\",\r\n \"name\": \"onesdk7487\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"722f3a29-65a9-42be-9f0a-c4be4266ba89\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:42:24.47Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:53:29.527Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "818" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "7b938aa5-5ddb-4cf9-a7c3-bec83a0cf2b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "546fa41a-e49d-4d77-901e-a039e1f5491e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084344Z:546fa41a-e49d-4d77-901e-a039e1f5491e" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:43:43 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5610?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU2MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "9c7bfafe-ef3f-4c1c-bb64-8eb595dd9e40" + ], + "x-ms-correlation-request-id": [ + "9c7bfafe-ef3f-4c1c-bb64-8eb595dd9e40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084344Z:9c7bfafe-ef3f-4c1c-bb64-8eb595dd9e40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:43:43 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5610?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU2MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-request-id": [ + "89487a1c-fd0c-4e14-9d75-1bcbe70fbd73" + ], + "x-ms-correlation-request-id": [ + "89487a1c-fd0c-4e14-9d75-1bcbe70fbd73" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084955Z:89487a1c-fd0c-4e14-9d75-1bcbe70fbd73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:49:55 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5610?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU2MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610\",\r\n \"name\": \"onesdk5610\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-request-id": [ + "99a8366d-a6db-49a1-94a5-8a0ad332def2" + ], + "x-ms-correlation-request-id": [ + "99a8366d-a6db-49a1-94a5-8a0ad332def2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084344Z:99a8366d-a6db-49a1-94a5-8a0ad332def2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:43:43 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "89f32dd1-1e25-4b8d-a473-64da524f2da5" + ], + "x-ms-correlation-request-id": [ + "89f32dd1-1e25-4b8d-a473-64da524f2da5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084344Z:89f32dd1-1e25-4b8d-a473-64da524f2da5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:43:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5610/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:173f47eb-58cc-4a00-be9a-85dc629a8e8e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "749e3b0b-11d0-47ab-8705-f0b7af8bf463" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084344Z:749e3b0b-11d0-47ab-8705-f0b7af8bf463" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:43:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "190532f1-3dc1-4fc6-9aa2-5a811f292575" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk8807' under resource group 'onesdk5610' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8ea40910-868d-4463-9835-fec654a493d8" + ], + "x-ms-correlation-request-id": [ + "8ea40910-868d-4463-9835-fec654a493d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084345Z:8ea40910-868d-4463-9835-fec654a493d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:43:44 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0f40217d-daa2-454f-8f0f-4284ca89146b" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807\",\r\n \"name\": \"onesdk8807\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk8807.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "231cc278-73c4-482c-9667-57888bc56507" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "dd5b6d32-39d6-43da-a25a-0e081994035a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084501Z:dd5b6d32-39d6-43da-a25a-0e081994035a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:45:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "80f084fc-2e49-46a9-9d2d-1b884d51730d" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807\",\r\n \"name\": \"onesdk8807\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk8807.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "32cf7990-f17e-4d0c-8c77-6c47cf0bfdda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "134d3212-1b00-4e54-8520-eab911b77e42" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084501Z:134d3212-1b00-4e54-8520-eab911b77e42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:45:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "f3369670-0e75-460c-a215-db78ac41990c" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk8807/databases/onesdk7487' under resource group 'onesdk5610' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c80223e6-b7a2-418c-abd8-0d38e537dc56" + ], + "x-ms-correlation-request-id": [ + "c80223e6-b7a2-418c-abd8-0d38e537dc56" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084501Z:c80223e6-b7a2-418c-abd8-0d38e537dc56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:45:01 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/Servers/onesdk3401/databases/onesdk7487\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "286" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T01:45:02.628-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a3412480-4ea9-4548-88d4-dd50a9489bcc" + ], + "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": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "bb63906f-2312-4ba2-8fc7-540b2192b020" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084503Z:bb63906f-2312-4ba2-8fc7-540b2192b020" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:45:03 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:02.597Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c529ee97-516a-410f-b232-ea7a744ae63e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "0d4ee134-cc88-4281-acf0-5f7930d52967" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084503Z:0d4ee134-cc88-4281-acf0-5f7930d52967" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:45:03 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b2541e80-8d9f-446f-9424-1e7550bf50f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "f4dd9519-56f7-4a6c-ada6-8e4678f9664e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084514Z:f4dd9519-56f7-4a6c-ada6-8e4678f9664e" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:45:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d1b50cb5-92ae-420e-b6f7-41c11aa68645" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "2002f389-0cec-4674-b19e-f9be66cd01c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084530Z:2002f389-0cec-4674-b19e-f9be66cd01c4" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:45:30 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "52c1c0c4-1e0c-468d-b8cf-71ed4cf19067" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "81725395-b3bb-4a8c-9043-f6bc26a1723b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084546Z:81725395-b3bb-4a8c-9043-f6bc26a1723b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:45:45 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c01aff1a-be49-4190-a109-d5e659aba3a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "16d6181f-09f0-450f-9c91-f421befd8e3b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084602Z:16d6181f-09f0-450f-9c91-f421befd8e3b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:46:02 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "f5192d36-b5b9-46b6-9234-2f37bcfd7ebd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "9cc0eeaa-9fb0-4a08-b06f-bee25f4c5e22" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084617Z:9cc0eeaa-9fb0-4a08-b06f-bee25f4c5e22" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:46:17 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "0d6e8495-c981-4bb6-b385-550741d158a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "72c239cd-7e03-44cf-b7f0-e4269f625fa5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084633Z:72c239cd-7e03-44cf-b7f0-e4269f625fa5" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:46:33 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "7bfe5f70-afa6-454f-b1ec-3940c2137929" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "2e98a909-6a32-4fad-9cb8-edfef68439b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084649Z:2e98a909-6a32-4fad-9cb8-edfef68439b5" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:46:48 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "db8d1458-7df9-4daf-a1ec-0e8c3fc2ec74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "8ac6af03-1eae-4827-8f50-0ac1aee74c40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084705Z:8ac6af03-1eae-4827-8f50-0ac1aee74c40" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:47:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "37944bea-6d48-429c-83f6-7e54dcf08c20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "449e0227-b6ea-4a96-9c46-c39d517d75ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084720Z:449e0227-b6ea-4a96-9c46-c39d517d75ec" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:47:20 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "806d579e-3443-4b90-82c7-27c70998ad95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "4699fd80-cb29-426f-8c97-108123665769" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084736Z:4699fd80-cb29-426f-8c97-108123665769" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:47:36 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "24129a8c-6239-4bc6-9511-fb2e2b1c2034" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "6fe06faf-eb86-4d6c-a80a-3d93c68f5cb6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084752Z:6fe06faf-eb86-4d6c-a80a-3d93c68f5cb6" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:47:52 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2e7b131a-6c71-4880-991b-5e4bac120d49" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487\",\r\n \"name\": \"onesdk7487\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3cba92b6-cb29-43f4-aa20-c02c70a3cd47\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:45:04.273Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:57:59.727Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "819" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "7b2365c3-65c3-469b-8bb0-d7ebb744b31c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "df5be20b-544e-4004-a0e4-007dbf50cce1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084808Z:df5be20b-544e-4004-a0e4-007dbf50cce1" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:48:08 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e3dd610e-f0ee-4519-9455-b5257e264711" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/replicationLinks/b7dad00a-0363-44ca-8481-176ed38959a2\",\r\n \"name\": \"b7dad00a-0363-44ca-8481-176ed38959a2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk3401\",\r\n \"partnerDatabase\": \"onesdk7487\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"NonReadableSecondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"startTime\": \"2015-08-07T08:45:46.8\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "624" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "7f2cc341-6b3d-4cf7-bc3f-168dcb25f012" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "2a884f16-8e8b-49d9-a726-6c779f851312" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084809Z:2a884f16-8e8b-49d9-a726-6c779f851312" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:48:08 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2932?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5MzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-request-id": [ + "5ed6e2bf-9950-4ebb-bbcb-52f3611390ad" + ], + "x-ms-correlation-request-id": [ + "5ed6e2bf-9950-4ebb-bbcb-52f3611390ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084809Z:5ed6e2bf-9950-4ebb-bbcb-52f3611390ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:48:09 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "780e6418-6b98-4d7b-b12d-29eb9ffb50e9" + ], + "x-ms-correlation-request-id": [ + "780e6418-6b98-4d7b-b12d-29eb9ffb50e9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084809Z:780e6418-6b98-4d7b-b12d-29eb9ffb50e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:48:09 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "ae59fc82-af59-433e-8a99-9428a4143fb3" + ], + "x-ms-correlation-request-id": [ + "ae59fc82-af59-433e-8a99-9428a4143fb3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084825Z:ae59fc82-af59-433e-8a99-9428a4143fb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:48:24 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-request-id": [ + "018793d7-467a-4aed-8c62-825e79d1c8b1" + ], + "x-ms-correlation-request-id": [ + "018793d7-467a-4aed-8c62-825e79d1c8b1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084840Z:018793d7-467a-4aed-8c62-825e79d1c8b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:48:39 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "5d0eacc4-31a4-4d07-b6d7-5fba301647f2" + ], + "x-ms-correlation-request-id": [ + "5d0eacc4-31a4-4d07-b6d7-5fba301647f2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084855Z:5d0eacc4-31a4-4d07-b6d7-5fba301647f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:48:55 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "611d4c35-69b7-43f9-b0eb-28db6777a588" + ], + "x-ms-correlation-request-id": [ + "611d4c35-69b7-43f9-b0eb-28db6777a588" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084910Z:611d4c35-69b7-43f9-b0eb-28db6777a588" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:49:09 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "77fad4fa-301c-4c75-b1ae-c2302edd319e" + ], + "x-ms-correlation-request-id": [ + "77fad4fa-301c-4c75-b1ae-c2302edd319e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084925Z:77fad4fa-301c-4c75-b1ae-c2302edd319e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:49:25 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "40cdf888-ab87-4fd5-856a-f8b9891b74d2" + ], + "x-ms-correlation-request-id": [ + "40cdf888-ab87-4fd5-856a-f8b9891b74d2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084940Z:40cdf888-ab87-4fd5-856a-f8b9891b74d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:49:39 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "222122e9-6f13-452a-8b54-1458572a844e" + ], + "x-ms-correlation-request-id": [ + "222122e9-6f13-452a-8b54-1458572a844e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084955Z:222122e9-6f13-452a-8b54-1458572a844e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:49:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5610?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU2MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "aa21c322-717e-4d09-bda9-addfd7d3e52e" + ], + "x-ms-correlation-request-id": [ + "aa21c322-717e-4d09-bda9-addfd7d3e52e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084955Z:aa21c322-717e-4d09-bda9-addfd7d3e52e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:49:55 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "0638d64a-6266-42ba-a345-20c72048146a" + ], + "x-ms-correlation-request-id": [ + "0638d64a-6266-42ba-a345-20c72048146a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084955Z:0638d64a-6266-42ba-a345-20c72048146a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:49:55 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "699889ee-cbd4-4620-bd9f-7570a9ee0458" + ], + "x-ms-correlation-request-id": [ + "699889ee-cbd4-4620-bd9f-7570a9ee0458" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085010Z:699889ee-cbd4-4620-bd9f-7570a9ee0458" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:50:10 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "39f52d69-23ba-4a83-9e59-3a75a28f96ef" + ], + "x-ms-correlation-request-id": [ + "39f52d69-23ba-4a83-9e59-3a75a28f96ef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085026Z:39f52d69-23ba-4a83-9e59-3a75a28f96ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:50:25 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "3f6644c3-ec04-4cb3-8773-b139fb191381" + ], + "x-ms-correlation-request-id": [ + "3f6644c3-ec04-4cb3-8773-b139fb191381" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085041Z:3f6644c3-ec04-4cb3-8773-b139fb191381" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:50:41 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-request-id": [ + "f340c794-5dec-4fbc-b354-bd91314cd69f" + ], + "x-ms-correlation-request-id": [ + "f340c794-5dec-4fbc-b354-bd91314cd69f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085056Z:f340c794-5dec-4fbc-b354-bd91314cd69f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:50:56 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-request-id": [ + "9a96a5d5-14e1-45ba-9699-3a9db3cc04a4" + ], + "x-ms-correlation-request-id": [ + "9a96a5d5-14e1-45ba-9699-3a9db3cc04a4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085111Z:9a96a5d5-14e1-45ba-9699-3a9db3cc04a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:51:10 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-request-id": [ + "e3cb4512-d50d-4092-9c66-310754bca55e" + ], + "x-ms-correlation-request-id": [ + "e3cb4512-d50d-4092-9c66-310754bca55e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085126Z:e3cb4512-d50d-4092-9c66-310754bca55e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:51:26 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "46e6d241-65f5-4f6b-8b21-e358d2c55cd5" + ], + "x-ms-correlation-request-id": [ + "46e6d241-65f5-4f6b-8b21-e358d2c55cd5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085141Z:46e6d241-65f5-4f6b-8b21-e358d2c55cd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:51:41 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateSecondaryDatabase": [ + "onesdk2932", + "onesdk3401", + "onesdk7487", + "onesdk5610", + "onesdk8807" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabaseV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabaseV2.json new file mode 100644 index 000000000000..ea2eda890abc --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabaseV2.json @@ -0,0 +1,2032 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5513?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1MTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "c31e5772-b9fd-4409-a62d-88ccbde9d4ec" + ], + "x-ms-correlation-request-id": [ + "c31e5772-b9fd-4409-a62d-88ccbde9d4ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083205Z:c31e5772-b9fd-4409-a62d-88ccbde9d4ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:05 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5513?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1MTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "8f913a24-4e0c-4f85-9ba6-f848bd41babc" + ], + "x-ms-correlation-request-id": [ + "8f913a24-4e0c-4f85-9ba6-f848bd41babc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083228Z:8f913a24-4e0c-4f85-9ba6-f848bd41babc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:28 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5513?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1MTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513\",\r\n \"name\": \"onesdk5513\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-request-id": [ + "c0395fb7-7e63-44fe-b056-942e784492c7" + ], + "x-ms-correlation-request-id": [ + "c0395fb7-7e63-44fe-b056-942e784492c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083206Z:c0395fb7-7e63-44fe-b056-942e784492c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:05 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "d56e8da0-9cb4-4844-a13a-ddfb7710439d" + ], + "x-ms-correlation-request-id": [ + "d56e8da0-9cb4-4844-a13a-ddfb7710439d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083206Z:d56e8da0-9cb4-4844-a13a-ddfb7710439d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5513/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:14ca50da-cebd-4981-9a09-968e085829ab" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "6915fe6c-dc06-4c17-a3d3-a8a4c4b47d26" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083206Z:6915fe6c-dc06-4c17-a3d3-a8a4c4b47d26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:06 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0OTMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "99f49baa-dc64-40e0-afbc-267d0c3eba5e" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk4931' under resource group 'onesdk5513' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "49b00b7f-9745-4966-b0a7-7dfd7f533dc4" + ], + "x-ms-correlation-request-id": [ + "49b00b7f-9745-4966-b0a7-7dfd7f533dc4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083206Z:49b00b7f-9745-4966-b0a7-7dfd7f533dc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:06 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0OTMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e4f2eb11-97b1-4bbb-bd27-f1986b6af7be" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931\",\r\n \"name\": \"onesdk4931\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4931.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "2947c40b-c19e-46c9-8d76-dfb5119f0b07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "279fb4ce-f619-4f5b-b1a2-980cac8d4640" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083212Z:279fb4ce-f619-4f5b-b1a2-980cac8d4640" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0OTMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "12c6ae65-be42-4fbd-aee3-61e757a6a2e0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931\",\r\n \"name\": \"onesdk4931\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4931.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "b36c318f-f356-49ed-8a7d-b398ddd8b9ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "316b9dca-6362-4b04-988c-944705b63e27" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083212Z:316b9dca-6362-4b04-988c-944705b63e27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931/databases/onesdk1223?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0OTMxL2RhdGFiYXNlcy9vbmVzZGsxMjIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e0b894bc-dd32-41a4-8a16-1d1717a97ff0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk4931/databases/onesdk1223' under resource group 'onesdk5513' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e03dbc9c-eef9-4ee1-bdea-c5ee232f844b" + ], + "x-ms-correlation-request-id": [ + "e03dbc9c-eef9-4ee1-bdea-c5ee232f844b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083212Z:e03dbc9c-eef9-4ee1-bdea-c5ee232f844b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931/databases/onesdk1223?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0OTMxL2RhdGFiYXNlcy9vbmVzZGsxMjIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "139" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "bab674d4-6084-4802-b9a3-80225807242e" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931/databases/onesdk1223\",\r\n \"name\": \"onesdk1223\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a2c46ffd-44fb-4fee-b049-92a0f05cfa84\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:32:20.327Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:33:20.327Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "776" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "db7f5f36-65cc-4181-99e3-d2c95cfa2cd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "27d01519-703f-4d22-88f3-c1b9fe6925c5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083222Z:27d01519-703f-4d22-88f3-c1b9fe6925c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2941?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "11e20198-7198-4b93-8101-7738f9f05096" + ], + "x-ms-correlation-request-id": [ + "11e20198-7198-4b93-8101-7738f9f05096" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083222Z:11e20198-7198-4b93-8101-7738f9f05096" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:21 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2941?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-request-id": [ + "42ac2e67-52e6-4844-b3a1-451e4d9d8fd1" + ], + "x-ms-correlation-request-id": [ + "42ac2e67-52e6-4844-b3a1-451e4d9d8fd1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083414Z:42ac2e67-52e6-4844-b3a1-451e4d9d8fd1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:34:14 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2941?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941\",\r\n \"name\": \"onesdk2941\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-request-id": [ + "2ce40db1-5c67-421f-9622-caad59d59ec3" + ], + "x-ms-correlation-request-id": [ + "2ce40db1-5c67-421f-9622-caad59d59ec3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083222Z:2ce40db1-5c67-421f-9622-caad59d59ec3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:22 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-request-id": [ + "0e381d25-27d1-427a-bd9b-23019babc3a8" + ], + "x-ms-correlation-request-id": [ + "0e381d25-27d1-427a-bd9b-23019babc3a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083222Z:0e381d25-27d1-427a-bd9b-23019babc3a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2941/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:9619eb3d-f248-45d1-95b3-e1a21b3968a9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "560fd6b4-616e-4e4c-a5ce-b26a6dc04730" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083222Z:560fd6b4-616e-4e4c-a5ce-b26a6dc04730" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4Mzk2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "82c32c06-810a-4ca6-91f5-ab1ccca217c0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk8396' under resource group 'onesdk2941' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a00b2cd3-80e7-46e4-a11d-0f879c9841c0" + ], + "x-ms-correlation-request-id": [ + "a00b2cd3-80e7-46e4-a11d-0f879c9841c0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083223Z:a00b2cd3-80e7-46e4-a11d-0f879c9841c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:22 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4Mzk2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b2c520d1-b729-44aa-b6a7-db58744c42fa" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396\",\r\n \"name\": \"onesdk8396\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk8396.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "73bf797c-057a-47fc-a520-92d4f62873e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "2f42047d-dd26-484e-9658-f5769ef449b4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083227Z:2f42047d-dd26-484e-9658-f5769ef449b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:27 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4Mzk2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "535181da-0bce-47b4-8008-cc0642cd2b73" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396\",\r\n \"name\": \"onesdk8396\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk8396.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "d45e2c2e-ac2f-4e9c-b881-ce97871b5e2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "25803adf-0501-434b-85d6-678a73d3c495" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083227Z:25803adf-0501-434b-85d6-678a73d3c495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:27 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396/databases/onesdk1223?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4Mzk2L2RhdGFiYXNlcy9vbmVzZGsxMjIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "19256a53-8f1f-467e-886a-6dbc48be859f" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk8396/databases/onesdk1223' under resource group 'onesdk2941' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c1cab79b-571b-4f45-8d40-51be40dc4fcf" + ], + "x-ms-correlation-request-id": [ + "c1cab79b-571b-4f45-8d40-51be40dc4fcf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083227Z:c1cab79b-571b-4f45-8d40-51be40dc4fcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:27 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396/databases/onesdk1223?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4Mzk2L2RhdGFiYXNlcy9vbmVzZGsxMjIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/Servers/onesdk4931/databases/onesdk1223\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "290" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e1688ae6-e0bf-4796-8b57-a728ba4b5ce7" + ] + }, + "ResponseBody": "{\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"details\": [\r\n {\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"severity\": \"16\"\r\n }\r\n ],\r\n \"innererror\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "305" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "d1af2273-bf08-4b15-84ab-501f63a0edae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "2a551a3a-75f0-4977-a14c-64b75585e10f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083228Z:2a551a3a-75f0-4977-a14c-64b75585e10f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:28 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5513?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1MTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-request-id": [ + "d1df68cb-20b1-4d9a-90f5-a14d7238b72c" + ], + "x-ms-correlation-request-id": [ + "d1df68cb-20b1-4d9a-90f5-a14d7238b72c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083229Z:d1df68cb-20b1-4d9a-90f5-a14d7238b72c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "7814fe18-f483-4e01-988e-21aaef29735f" + ], + "x-ms-correlation-request-id": [ + "7814fe18-f483-4e01-988e-21aaef29735f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083229Z:7814fe18-f483-4e01-988e-21aaef29735f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "5ab6fc45-3260-4394-bf94-1b72942cc0ad" + ], + "x-ms-correlation-request-id": [ + "5ab6fc45-3260-4394-bf94-1b72942cc0ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083244Z:5ab6fc45-3260-4394-bf94-1b72942cc0ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-request-id": [ + "0e9f4d41-f179-4e86-81bd-4d8c685b7145" + ], + "x-ms-correlation-request-id": [ + "0e9f4d41-f179-4e86-81bd-4d8c685b7145" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083259Z:0e9f4d41-f179-4e86-81bd-4d8c685b7145" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:32:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-request-id": [ + "6dd84448-7491-48be-ba4f-1fde1b61c92d" + ], + "x-ms-correlation-request-id": [ + "6dd84448-7491-48be-ba4f-1fde1b61c92d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083314Z:6dd84448-7491-48be-ba4f-1fde1b61c92d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:33:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-request-id": [ + "e8d2cb6a-c9a9-4200-b445-29e0cc9cfc8d" + ], + "x-ms-correlation-request-id": [ + "e8d2cb6a-c9a9-4200-b445-29e0cc9cfc8d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083329Z:e8d2cb6a-c9a9-4200-b445-29e0cc9cfc8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:33:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "c1df8ff5-20f1-4fc2-9943-97cee2d84d27" + ], + "x-ms-correlation-request-id": [ + "c1df8ff5-20f1-4fc2-9943-97cee2d84d27" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083344Z:c1df8ff5-20f1-4fc2-9943-97cee2d84d27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:33:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-request-id": [ + "911a2075-46f5-43f2-a152-7807c44e7c62" + ], + "x-ms-correlation-request-id": [ + "911a2075-46f5-43f2-a152-7807c44e7c62" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083359Z:911a2075-46f5-43f2-a152-7807c44e7c62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:33:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "8e136e6a-e0cb-40e4-ba4d-42ed084bfaad" + ], + "x-ms-correlation-request-id": [ + "8e136e6a-e0cb-40e4-ba4d-42ed084bfaad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083414Z:8e136e6a-e0cb-40e4-ba4d-42ed084bfaad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:34:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2941?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-request-id": [ + "512ebb58-9194-483d-ad4a-eaf0f3d6bbe6" + ], + "x-ms-correlation-request-id": [ + "512ebb58-9194-483d-ad4a-eaf0f3d6bbe6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083415Z:512ebb58-9194-483d-ad4a-eaf0f3d6bbe6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:34:15 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-request-id": [ + "6837e622-9f69-4166-904c-5f9367b039ea" + ], + "x-ms-correlation-request-id": [ + "6837e622-9f69-4166-904c-5f9367b039ea" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083415Z:6837e622-9f69-4166-904c-5f9367b039ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:34:15 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "15c5accf-237d-4a77-80f2-1435efb166ff" + ], + "x-ms-correlation-request-id": [ + "15c5accf-237d-4a77-80f2-1435efb166ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083430Z:15c5accf-237d-4a77-80f2-1435efb166ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:34:30 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "a0d72c81-9c25-4796-925a-7247b4de5e68" + ], + "x-ms-correlation-request-id": [ + "a0d72c81-9c25-4796-925a-7247b4de5e68" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083445Z:a0d72c81-9c25-4796-925a-7247b4de5e68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:34:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "93fc3c4a-02f3-42ff-ae8c-58015ee3253c" + ], + "x-ms-correlation-request-id": [ + "93fc3c4a-02f3-42ff-ae8c-58015ee3253c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083500Z:93fc3c4a-02f3-42ff-ae8c-58015ee3253c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:35:00 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "03f0e006-aabd-489d-9acf-9c43f45618a3" + ], + "x-ms-correlation-request-id": [ + "03f0e006-aabd-489d-9acf-9c43f45618a3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083515Z:03f0e006-aabd-489d-9acf-9c43f45618a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:35:15 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "1f5b6de1-c4ee-4219-98d0-ab3423acbeb4" + ], + "x-ms-correlation-request-id": [ + "1f5b6de1-c4ee-4219-98d0-ab3423acbeb4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083530Z:1f5b6de1-c4ee-4219-98d0-ab3423acbeb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:35:30 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "ec92ae72-72b1-4ca9-9dd1-95dece0219be" + ], + "x-ms-correlation-request-id": [ + "ec92ae72-72b1-4ca9-9dd1-95dece0219be" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083545Z:ec92ae72-72b1-4ca9-9dd1-95dece0219be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:35:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-request-id": [ + "e72d44eb-577b-4e09-a48a-2e5dc8e814cf" + ], + "x-ms-correlation-request-id": [ + "e72d44eb-577b-4e09-a48a-2e5dc8e814cf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083600Z:e72d44eb-577b-4e09-a48a-2e5dc8e814cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:36:00 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-CreateSecondaryDatabaseV2": [ + "onesdk5513", + "onesdk4931", + "onesdk1223", + "onesdk2941", + "onesdk8396" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLink.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLink.json new file mode 100644 index 000000000000..939b71aa8052 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLink.json @@ -0,0 +1,2860 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2636?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI2MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "d5bf1c39-9645-4b04-9495-8322f5bcf383" + ], + "x-ms-correlation-request-id": [ + "d5bf1c39-9645-4b04-9495-8322f5bcf383" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090101Z:d5bf1c39-9645-4b04-9495-8322f5bcf383" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:01:01 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2636?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI2MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-request-id": [ + "b3c72e0a-1750-4e48-90ad-e1fb3e4649e5" + ], + "x-ms-correlation-request-id": [ + "b3c72e0a-1750-4e48-90ad-e1fb3e4649e5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090525Z:b3c72e0a-1750-4e48-90ad-e1fb3e4649e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:05:25 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2636?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI2MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636\",\r\n \"name\": \"onesdk2636\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "29d9dbac-ce8a-4d1a-9990-de536fb3dd4f" + ], + "x-ms-correlation-request-id": [ + "29d9dbac-ce8a-4d1a-9990-de536fb3dd4f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090102Z:29d9dbac-ce8a-4d1a-9990-de536fb3dd4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:01:01 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "e6a99eef-cb74-4b8e-8dcb-4be5c1cd723b" + ], + "x-ms-correlation-request-id": [ + "e6a99eef-cb74-4b8e-8dcb-4be5c1cd723b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090102Z:e6a99eef-cb74-4b8e-8dcb-4be5c1cd723b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:01:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2636/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:73ecdf8b-c092-4ec1-993c-d55f7345a32b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "189d567b-f586-45b9-b374-4674efa7d1e5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090102Z:189d567b-f586-45b9-b374-4674efa7d1e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:01:02 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "c4687714-41b9-40bc-8ab4-7d7ac2a13c5f" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2099' under resource group 'onesdk2636' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3a901636-8990-4c50-88b7-a0c05685fcef" + ], + "x-ms-correlation-request-id": [ + "3a901636-8990-4c50-88b7-a0c05685fcef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090102Z:3a901636-8990-4c50-88b7-a0c05685fcef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:01:02 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "1281c8a6-b54d-4412-a253-47a34aae3e9c" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099\",\r\n \"name\": \"onesdk2099\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2099.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "adeb32ce-4e4c-4bc1-b124-3eb25ad525b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "5a0ba2e1-c46b-43b0-aaf6-19ac9ab9ca8d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090148Z:5a0ba2e1-c46b-43b0-aaf6-19ac9ab9ca8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:01:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2b44e781-d184-47af-9ae3-3b3817534f15" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099\",\r\n \"name\": \"onesdk2099\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2099.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "ad01a6bb-958a-4a03-990b-7e5119aeb342" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "02bfaea0-ea77-4a2d-ab1e-ed759bb45d71" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090148Z:02bfaea0-ea77-4a2d-ab1e-ed759bb45d71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:01:48 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "c88078fc-ddb7-47ff-a0f8-9a055084b42f" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2099/databases/onesdk686' under resource group 'onesdk2636' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b570b171-79f4-42f1-a871-74fde7a0db04" + ], + "x-ms-correlation-request-id": [ + "b570b171-79f4-42f1-a871-74fde7a0db04" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090148Z:b570b171-79f4-42f1-a871-74fde7a0db04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:01:48 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "135" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5bbadd82-e8d3-4b4d-bd28-8fc742f79524" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T02:01:49.893-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "04971737-986c-41b2-b919-9dbc1a35a5a0" + ], + "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": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "093eca19-f599-4d5c-a4e8-c8704cf21ab8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090150Z:093eca19-f599-4d5c-a4e8-c8704cf21ab8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:01:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvb3BlcmF0aW9uUmVzdWx0cy8wNDk3MTczNy05ODZjLTQxYjItYjkxOS05ZGJjMWEzNWE1YTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5bbadd82-e8d3-4b4d-bd28-8fc742f79524" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T09:01:49.627Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "57410cb5-caa5-4965-9d9e-bf330942e418" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "dab04b62-4941-4043-9c90-a1a1d6305a04" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090151Z:dab04b62-4941-4043-9c90-a1a1d6305a04" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:01:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvb3BlcmF0aW9uUmVzdWx0cy8wNDk3MTczNy05ODZjLTQxYjItYjkxOS05ZGJjMWEzNWE1YTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5bbadd82-e8d3-4b4d-bd28-8fc742f79524" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T09:01:49.627Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "1a31d72f-0ebb-41dc-bd08-dc027167dc39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "ccc211ed-4289-451a-977d-63b3ebe25d9b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090221Z:ccc211ed-4289-451a-977d-63b3ebe25d9b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:02:21 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvb3BlcmF0aW9uUmVzdWx0cy8wNDk3MTczNy05ODZjLTQxYjItYjkxOS05ZGJjMWEzNWE1YTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5bbadd82-e8d3-4b4d-bd28-8fc742f79524" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T09:01:49.627Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "26aed47d-9df9-4dcc-b167-fe8dc2c9e461" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "9f93465a-2d83-49ba-ac75-c7cfab16096a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090237Z:9f93465a-2d83-49ba-ac75-c7cfab16096a" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:02:37 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvb3BlcmF0aW9uUmVzdWx0cy8wNDk3MTczNy05ODZjLTQxYjItYjkxOS05ZGJjMWEzNWE1YTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5bbadd82-e8d3-4b4d-bd28-8fc742f79524" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T09:01:49.627Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "1fa2b573-a016-4c49-9484-19a7f6d3319e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "66bf6054-3e30-42c9-a7ee-409fee352911" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090253Z:66bf6054-3e30-42c9-a7ee-409fee352911" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:02:53 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvb3BlcmF0aW9uUmVzdWx0cy8wNDk3MTczNy05ODZjLTQxYjItYjkxOS05ZGJjMWEzNWE1YTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "5bbadd82-e8d3-4b4d-bd28-8fc742f79524" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686\",\r\n \"name\": \"onesdk686\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d8faf1b4-b90f-4419-b5d2-5a996bc9fe71\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T09:01:50.207Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T09:12:53.347Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "817" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "91f414df-1ae9-4661-ae5a-e2ee4f5307d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "b74f25a4-259c-4d7a-8634-35d2594a07b6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090309Z:b74f25a4-259c-4d7a-8634-35d2594a07b6" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:03:08 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk899?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "d747909c-0b41-48e0-b514-d19fcee7d9e6" + ], + "x-ms-correlation-request-id": [ + "d747909c-0b41-48e0-b514-d19fcee7d9e6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090309Z:d747909c-0b41-48e0-b514-d19fcee7d9e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:03:09 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk899?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-request-id": [ + "ec7e6d53-c20d-4e52-80d4-d4ac5373dec5" + ], + "x-ms-correlation-request-id": [ + "ec7e6d53-c20d-4e52-80d4-d4ac5373dec5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090711Z:ec7e6d53-c20d-4e52-80d4-d4ac5373dec5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:07:11 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk899?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899\",\r\n \"name\": \"onesdk899\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "dc2e8b84-9e2b-4c0a-808f-325fcfa4abd6" + ], + "x-ms-correlation-request-id": [ + "dc2e8b84-9e2b-4c0a-808f-325fcfa4abd6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090309Z:dc2e8b84-9e2b-4c0a-808f-325fcfa4abd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:03:09 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "62a4eaa0-4fc7-42c8-8b5a-58213dca1587" + ], + "x-ms-correlation-request-id": [ + "62a4eaa0-4fc7-42c8-8b5a-58213dca1587" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090309Z:62a4eaa0-4fc7-42c8-8b5a-58213dca1587" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:03:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk899/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:8746eafc-5f98-423c-a48a-b894e8983059" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "45bca86a-ec9f-4d6b-94ce-5fb433c8e16d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090310Z:45bca86a-ec9f-4d6b-94ce-5fb433c8e16d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:03:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "81731e8c-9891-4757-80eb-eea8b0936d0f" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9984' under resource group 'onesdk899' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "145" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "e6727583-e990-48f3-bf8a-a33edfca3bf8" + ], + "x-ms-correlation-request-id": [ + "e6727583-e990-48f3-bf8a-a33edfca3bf8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090310Z:e6727583-e990-48f3-bf8a-a33edfca3bf8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:03:10 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "cd81f386-54a4-47c6-a44f-29f9ac3e9803" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984\",\r\n \"name\": \"onesdk9984\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9984.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "466" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "99d0e25a-d339-4818-aa4a-f92896b6309f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "dd247961-36b5-44a1-8136-a9bca392008c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090351Z:dd247961-36b5-44a1-8136-a9bca392008c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:03:51 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "de02fad5-ac62-4b48-936a-2512eaabd147" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984\",\r\n \"name\": \"onesdk9984\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9984.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "480" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "2cfdab37-6c64-49d0-8d31-56ec7422388c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "4482cdd4-9506-4f0e-8130-a2947055bff2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090351Z:4482cdd4-9506-4f0e-8130-a2947055bff2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:03:51 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "667f09ab-e982-4c33-841a-a1d70ab76d1e" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9984/databases/onesdk686' under resource group 'onesdk899' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8b5d8f57-aa6c-4d26-bf98-2e1e88149572" + ], + "x-ms-correlation-request-id": [ + "8b5d8f57-aa6c-4d26-bf98-2e1e88149572" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090351Z:8b5d8f57-aa6c-4d26-bf98-2e1e88149572" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:03:51 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/Servers/onesdk2099/databases/onesdk686\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "285" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f766f75-fb9d-4345-a572-4cb7fa874043" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T02:03:52.971-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dc694465-df43-4f76-84de-a78461fbf53e" + ], + "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": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "6123471c-b0d1-4d14-944d-f30f504f57a4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090353Z:6123471c-b0d1-4d14-944d-f30f504f57a4" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:03:53 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f766f75-fb9d-4345-a572-4cb7fa874043" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2b10dbd8-1a20-4f98-9c3b-ea25a232386e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "6b7c14ba-336b-4fd0-b8cf-16d7d8cf6a73" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090354Z:6b7c14ba-336b-4fd0-b8cf-16d7d8cf6a73" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:03:53 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f766f75-fb9d-4345-a572-4cb7fa874043" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9823222f-3315-490e-88f2-8c0891768173" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "6860f7bb-c04d-4f35-ae24-1db35bd5ad01" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090404Z:6860f7bb-c04d-4f35-ae24-1db35bd5ad01" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:04:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f766f75-fb9d-4345-a572-4cb7fa874043" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "daa9e036-ae68-4749-8642-a1f338456c8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "34586d39-0cb9-4edc-870f-fb9155ee8a58" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090420Z:34586d39-0cb9-4edc-870f-fb9155ee8a58" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:04:20 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f766f75-fb9d-4345-a572-4cb7fa874043" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9e8e01cb-8b06-42b7-949e-50cd9a703e77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "ee3023c9-cec9-4ac3-bb3d-ec287f82409d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090436Z:ee3023c9-cec9-4ac3-bb3d-ec287f82409d" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:04:36 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f766f75-fb9d-4345-a572-4cb7fa874043" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9392cf6b-a830-461e-b40c-84c3cf81e322" + ], + "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": [ + "7715c7f9-688d-4c69-9dc1-4bd45043f67b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090452Z:7715c7f9-688d-4c69-9dc1-4bd45043f67b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:04:52 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f766f75-fb9d-4345-a572-4cb7fa874043" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "20" + ], + "x-ms-request-id": [ + "2d70518d-c038-451a-b305-55fc7247ae82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "2e469ea3-3dee-4d22-8ed2-cde8dffa7bf9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090508Z:2e469ea3-3dee-4d22-8ed2-cde8dffa7bf9" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:05:07 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f766f75-fb9d-4345-a572-4cb7fa874043" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686\",\r\n \"name\": \"onesdk686\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"296113e5-a169-4723-8c0f-4323ddcd917b\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T09:03:53.957Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T09:15:12.067Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "816" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "40cfa596-25bf-4e50-965c-f8d4e2ebf890" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "09d5e592-4dcd-445f-9a7c-f5c227666336" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090523Z:09d5e592-4dcd-445f-9a7c-f5c227666336" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:05:23 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9yZXBsaWNhdGlvbkxpbmtzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "f7c8c0b3-3dcf-449a-9c4d-60e6c7c735c9" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/replicationLinks/70ef3c79-a6e5-4733-99d4-007e7aec199f\",\r\n \"name\": \"70ef3c79-a6e5-4733-99d4-007e7aec199f\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk2099\",\r\n \"partnerDatabase\": \"onesdk686\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"NonReadableSecondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"startTime\": \"2015-08-07T09:04:14.97\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "622" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "54637148-6d40-42d9-838e-dcae41153d59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "3a3cb375-f3c1-482b-b360-ffe0f88b738b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090524Z:3a3cb375-f3c1-482b-b360-ffe0f88b738b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:05:23 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "90cd4607-59e2-4cd9-b0f4-0a2120bdd631" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/replicationLinks/70ef3c79-a6e5-4733-99d4-007e7aec199f\",\r\n \"name\": \"70ef3c79-a6e5-4733-99d4-007e7aec199f\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk9984\",\r\n \"partnerDatabase\": \"onesdk686\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"NonReadableSecondary\",\r\n \"startTime\": \"2015-08-07T09:04:14.157\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "624" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "3d42d670-2cf1-4c29-b4f0-ba4a43e63b0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "c49752c5-9164-4370-aba9-8b9a3c9d5dee" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090525Z:c49752c5-9164-4370-aba9-8b9a3c9d5dee" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:05:25 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2636?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI2MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-request-id": [ + "f1d553b3-8825-48a2-966a-c0997327040d" + ], + "x-ms-correlation-request-id": [ + "f1d553b3-8825-48a2-966a-c0997327040d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090526Z:f1d553b3-8825-48a2-966a-c0997327040d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:05:25 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "3b894c15-c181-414e-8fb1-781cabca05b1" + ], + "x-ms-correlation-request-id": [ + "3b894c15-c181-414e-8fb1-781cabca05b1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090526Z:3b894c15-c181-414e-8fb1-781cabca05b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:05:25 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "4059f33b-cb29-460e-b4d9-0483692b765e" + ], + "x-ms-correlation-request-id": [ + "4059f33b-cb29-460e-b4d9-0483692b765e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090541Z:4059f33b-cb29-460e-b4d9-0483692b765e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:05:41 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "30e1cdfc-d8bf-458b-b2d7-0d4f50b418d5" + ], + "x-ms-correlation-request-id": [ + "30e1cdfc-d8bf-458b-b2d7-0d4f50b418d5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090556Z:30e1cdfc-d8bf-458b-b2d7-0d4f50b418d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:05:55 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "63424615-b784-4eaf-8cc3-40296fd9269d" + ], + "x-ms-correlation-request-id": [ + "63424615-b784-4eaf-8cc3-40296fd9269d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090611Z:63424615-b784-4eaf-8cc3-40296fd9269d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:06:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "51a78f18-8cac-4b39-8ccf-07346713f169" + ], + "x-ms-correlation-request-id": [ + "51a78f18-8cac-4b39-8ccf-07346713f169" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090626Z:51a78f18-8cac-4b39-8ccf-07346713f169" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:06:25 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-request-id": [ + "76e3f3b0-c02a-4bf0-90b6-b404994dbf8c" + ], + "x-ms-correlation-request-id": [ + "76e3f3b0-c02a-4bf0-90b6-b404994dbf8c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090641Z:76e3f3b0-c02a-4bf0-90b6-b404994dbf8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:06:41 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-request-id": [ + "b6ee52d1-a6c6-4297-82d8-fcf4836f0cc6" + ], + "x-ms-correlation-request-id": [ + "b6ee52d1-a6c6-4297-82d8-fcf4836f0cc6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090656Z:b6ee52d1-a6c6-4297-82d8-fcf4836f0cc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:06:56 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "c200e826-fc6a-4295-807a-61bc0bb8d45a" + ], + "x-ms-correlation-request-id": [ + "c200e826-fc6a-4295-807a-61bc0bb8d45a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090711Z:c200e826-fc6a-4295-807a-61bc0bb8d45a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:07:11 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk899?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-request-id": [ + "bca5ed8a-ebeb-4bfe-a388-36b21b20035d" + ], + "x-ms-correlation-request-id": [ + "bca5ed8a-ebeb-4bfe-a388-36b21b20035d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090711Z:bca5ed8a-ebeb-4bfe-a388-36b21b20035d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:07:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "d0d19690-641f-481b-bbb7-8fd30e5d50b7" + ], + "x-ms-correlation-request-id": [ + "d0d19690-641f-481b-bbb7-8fd30e5d50b7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090712Z:d0d19690-641f-481b-bbb7-8fd30e5d50b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:07:11 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-request-id": [ + "4582fa4f-028a-4a04-a790-fd84368ffc8f" + ], + "x-ms-correlation-request-id": [ + "4582fa4f-028a-4a04-a790-fd84368ffc8f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090727Z:4582fa4f-028a-4a04-a790-fd84368ffc8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:07:27 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-request-id": [ + "ec868342-46d5-4947-9c7c-a82ed4ed721c" + ], + "x-ms-correlation-request-id": [ + "ec868342-46d5-4947-9c7c-a82ed4ed721c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090742Z:ec868342-46d5-4947-9c7c-a82ed4ed721c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:07:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-request-id": [ + "0d1e66ad-187d-4869-a58c-ba8d8f7a92d6" + ], + "x-ms-correlation-request-id": [ + "0d1e66ad-187d-4869-a58c-ba8d8f7a92d6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090757Z:0d1e66ad-187d-4869-a58c-ba8d8f7a92d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:07:56 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-request-id": [ + "4de4afd0-9126-4664-87dc-9484326b7abf" + ], + "x-ms-correlation-request-id": [ + "4de4afd0-9126-4664-87dc-9484326b7abf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090812Z:4de4afd0-9126-4664-87dc-9484326b7abf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:08:12 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-request-id": [ + "9b673f25-4ebf-45d0-a668-a5c3a04a7016" + ], + "x-ms-correlation-request-id": [ + "9b673f25-4ebf-45d0-a668-a5c3a04a7016" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090827Z:9b673f25-4ebf-45d0-a668-a5c3a04a7016" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:08:27 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-request-id": [ + "1ac5fcd3-bc42-4455-a530-a8205499c3fe" + ], + "x-ms-correlation-request-id": [ + "1ac5fcd3-bc42-4455-a530-a8205499c3fe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090842Z:1ac5fcd3-bc42-4455-a530-a8205499c3fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:08:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-request-id": [ + "652c1a1f-03c1-4ef7-8e57-9eb3e36db982" + ], + "x-ms-correlation-request-id": [ + "652c1a1f-03c1-4ef7-8e57-9eb3e36db982" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090857Z:652c1a1f-03c1-4ef7-8e57-9eb3e36db982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:08:57 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetReplicationLink": [ + "onesdk2636", + "onesdk2099", + "onesdk686", + "onesdk899", + "onesdk9984" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLinkV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLinkV2.json new file mode 100644 index 000000000000..6445b3e62c4b --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLinkV2.json @@ -0,0 +1,2032 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4922?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-request-id": [ + "c90f2be4-395d-4341-a595-e15bff58dc8c" + ], + "x-ms-correlation-request-id": [ + "c90f2be4-395d-4341-a595-e15bff58dc8c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083640Z:c90f2be4-395d-4341-a595-e15bff58dc8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:36:40 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4922?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-request-id": [ + "740ae1b0-ae50-41a0-8c35-6ddb86d874c8" + ], + "x-ms-correlation-request-id": [ + "740ae1b0-ae50-41a0-8c35-6ddb86d874c8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083718Z:740ae1b0-ae50-41a0-8c35-6ddb86d874c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:18 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4922?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922\",\r\n \"name\": \"onesdk4922\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "4bd83613-f09e-4378-b71c-e6da3b6aca12" + ], + "x-ms-correlation-request-id": [ + "4bd83613-f09e-4378-b71c-e6da3b6aca12" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083640Z:4bd83613-f09e-4378-b71c-e6da3b6aca12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:36:40 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-request-id": [ + "268b7678-9371-485b-b75a-59826a9c4b11" + ], + "x-ms-correlation-request-id": [ + "268b7678-9371-485b-b75a-59826a9c4b11" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083640Z:268b7678-9371-485b-b75a-59826a9c4b11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:36:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4922/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:b61ae80d-3577-41fd-bc68-c67344feb8fc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "23848974-960c-424f-a015-0f03a4859685" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083640Z:23848974-960c-424f-a015-0f03a4859685" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:36:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NjEyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b91fc705-b4e1-4d9b-a529-95ab4a8d0651" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7612' under resource group 'onesdk4922' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "15a62b5d-dfc3-477c-b8b3-d6dd70f8a656" + ], + "x-ms-correlation-request-id": [ + "15a62b5d-dfc3-477c-b8b3-d6dd70f8a656" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083641Z:15a62b5d-dfc3-477c-b8b3-d6dd70f8a656" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:36:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NjEyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "bbb163ab-196f-4192-92f2-63d35dc2ea87" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612\",\r\n \"name\": \"onesdk7612\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7612.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "805d4fdc-789f-4ca2-a17a-abe101808c68" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "f280104a-50b5-4b15-9182-21112de2bf6a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083647Z:f280104a-50b5-4b15-9182-21112de2bf6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:36:46 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NjEyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "716f2d67-449f-4144-a10f-33e5659f6570" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612\",\r\n \"name\": \"onesdk7612\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7612.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "8b9406fe-7411-42b2-abf7-939e272745d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "c9e9cd17-0ad8-4c62-a2c4-33f419bd042b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083646Z:c9e9cd17-0ad8-4c62-a2c4-33f419bd042b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:36:46 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612/databases/onesdk9027?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NjEyL2RhdGFiYXNlcy9vbmVzZGs5MDI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "2f508c57-166f-4c1d-8a6d-7d94f4a6e951" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7612/databases/onesdk9027' under resource group 'onesdk4922' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ecab81e0-eb93-47df-9182-eb40ff3debfa" + ], + "x-ms-correlation-request-id": [ + "ecab81e0-eb93-47df-9182-eb40ff3debfa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083646Z:ecab81e0-eb93-47df-9182-eb40ff3debfa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:36:46 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612/databases/onesdk9027?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NjEyL2RhdGFiYXNlcy9vbmVzZGs5MDI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "139" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "8429a9f6-41dc-4640-abee-20f9d5bce29a" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612/databases/onesdk9027\",\r\n \"name\": \"onesdk9027\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d98c7b78-8ad3-4661-93bd-5eaa132fc73e\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:37:10.73Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:38:10.73Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "774" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "04f13768-ef8e-4cdc-a971-42c0378da42c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "ceb69a11-95bc-41f8-be7b-83e017f6c8bc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083712Z:ceb69a11-95bc-41f8-be7b-83e017f6c8bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8734?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg3MzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-request-id": [ + "b8517e89-9544-4c89-ae57-10f96b4cac08" + ], + "x-ms-correlation-request-id": [ + "b8517e89-9544-4c89-ae57-10f96b4cac08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083712Z:b8517e89-9544-4c89-ae57-10f96b4cac08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8734?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg3MzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-request-id": [ + "ae6e24a8-654d-4e29-baca-1df113202182" + ], + "x-ms-correlation-request-id": [ + "ae6e24a8-654d-4e29-baca-1df113202182" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083904Z:ae6e24a8-654d-4e29-baca-1df113202182" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:39:04 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8734?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg3MzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734\",\r\n \"name\": \"onesdk8734\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "a884a10e-e817-4e8e-bbfc-38b1ccdeca66" + ], + "x-ms-correlation-request-id": [ + "a884a10e-e817-4e8e-bbfc-38b1ccdeca66" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083712Z:a884a10e-e817-4e8e-bbfc-38b1ccdeca66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:12 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-request-id": [ + "303b34f2-2c04-49f0-bf1c-391a64e961e7" + ], + "x-ms-correlation-request-id": [ + "303b34f2-2c04-49f0-bf1c-391a64e961e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083712Z:303b34f2-2c04-49f0-bf1c-391a64e961e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8734/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:a2f43020-2b9d-48b2-b06c-d13b541012f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "08390bf0-28c1-4c6a-8df3-d141257a34c0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083713Z:08390bf0-28c1-4c6a-8df3-d141257a34c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:12 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNTcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "d239bd76-ee08-4f99-8b3f-b149b2a72705" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3572' under resource group 'onesdk8734' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8386da47-7a50-4f41-a6f7-61fbe20de765" + ], + "x-ms-correlation-request-id": [ + "8386da47-7a50-4f41-a6f7-61fbe20de765" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083713Z:8386da47-7a50-4f41-a6f7-61fbe20de765" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:12 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNTcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4de5d431-f086-4b77-bdd4-f3700b93aae5" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572\",\r\n \"name\": \"onesdk3572\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3572.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "b5f2507f-ad06-489e-8fcc-113d2ded400d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "237b8054-eb44-43e3-83ac-2b56c95dc1a2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083717Z:237b8054-eb44-43e3-83ac-2b56c95dc1a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNTcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "c3737bd7-74e3-4d74-bda0-bdfd9627d8c3" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572\",\r\n \"name\": \"onesdk3572\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3572.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "3a3abc53-9083-4fab-92ad-23462ac8dd1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "253f749f-ac69-4fdb-b8b5-e0fde87be72a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083717Z:253f749f-ac69-4fdb-b8b5-e0fde87be72a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:17 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572/databases/onesdk9027?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNTcyL2RhdGFiYXNlcy9vbmVzZGs5MDI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "33588e1d-7123-4596-a669-e44336a58144" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3572/databases/onesdk9027' under resource group 'onesdk8734' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "bd71b281-beb8-4fa5-be4a-ed69b29cc032" + ], + "x-ms-correlation-request-id": [ + "bd71b281-beb8-4fa5-be4a-ed69b29cc032" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083717Z:bd71b281-beb8-4fa5-be4a-ed69b29cc032" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:17 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572/databases/onesdk9027?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNTcyL2RhdGFiYXNlcy9vbmVzZGs5MDI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/Servers/onesdk7612/databases/onesdk9027\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "290" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "e62900a6-f466-4df2-81d7-22cbbe9236a4" + ] + }, + "ResponseBody": "{\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"details\": [\r\n {\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"severity\": \"16\"\r\n }\r\n ],\r\n \"innererror\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "305" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "1d46324d-6c12-4582-b2f3-7539e19a86e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "bbf969da-4100-45a8-86a4-5048d7227200" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083718Z:bbf969da-4100-45a8-86a4-5048d7227200" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:18 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4922?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-request-id": [ + "b4653421-ef6d-4d8e-a6a5-6978a6c7a613" + ], + "x-ms-correlation-request-id": [ + "b4653421-ef6d-4d8e-a6a5-6978a6c7a613" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083719Z:b4653421-ef6d-4d8e-a6a5-6978a6c7a613" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:18 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "7fbaa1d7-7cbe-4140-905f-18e6cccd079f" + ], + "x-ms-correlation-request-id": [ + "7fbaa1d7-7cbe-4140-905f-18e6cccd079f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083719Z:7fbaa1d7-7cbe-4140-905f-18e6cccd079f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:18 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-request-id": [ + "52ed63ca-5977-43d4-a2f2-e79317ec60c6" + ], + "x-ms-correlation-request-id": [ + "52ed63ca-5977-43d4-a2f2-e79317ec60c6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083734Z:52ed63ca-5977-43d4-a2f2-e79317ec60c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:33 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-request-id": [ + "8d80e647-444b-4eea-be7d-46f107b93184" + ], + "x-ms-correlation-request-id": [ + "8d80e647-444b-4eea-be7d-46f107b93184" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083749Z:8d80e647-444b-4eea-be7d-46f107b93184" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:37:49 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-request-id": [ + "b5171d79-8954-4beb-acbd-9eeab5fca458" + ], + "x-ms-correlation-request-id": [ + "b5171d79-8954-4beb-acbd-9eeab5fca458" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083804Z:b5171d79-8954-4beb-acbd-9eeab5fca458" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:38:03 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-request-id": [ + "101f2ba1-cfa3-4942-8012-a7f521a4f50e" + ], + "x-ms-correlation-request-id": [ + "101f2ba1-cfa3-4942-8012-a7f521a4f50e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083819Z:101f2ba1-cfa3-4942-8012-a7f521a4f50e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:38:19 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-request-id": [ + "f61dd47e-cb82-4f25-9de3-5cba97c1ede2" + ], + "x-ms-correlation-request-id": [ + "f61dd47e-cb82-4f25-9de3-5cba97c1ede2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083834Z:f61dd47e-cb82-4f25-9de3-5cba97c1ede2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:38:34 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-request-id": [ + "f8c67d46-757d-4c3b-b72e-24c7e1bb8e9a" + ], + "x-ms-correlation-request-id": [ + "f8c67d46-757d-4c3b-b72e-24c7e1bb8e9a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083849Z:f8c67d46-757d-4c3b-b72e-24c7e1bb8e9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:38:48 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-request-id": [ + "b9abe67a-ae47-4337-a7b4-bf6df17668aa" + ], + "x-ms-correlation-request-id": [ + "b9abe67a-ae47-4337-a7b4-bf6df17668aa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083904Z:b9abe67a-ae47-4337-a7b4-bf6df17668aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:39:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8734?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg3MzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-request-id": [ + "a31e20af-308a-4cca-bd97-926a51031039" + ], + "x-ms-correlation-request-id": [ + "a31e20af-308a-4cca-bd97-926a51031039" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083904Z:a31e20af-308a-4cca-bd97-926a51031039" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:39:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "ff0bf88f-7b3b-4d81-b371-bbdbf0828ee9" + ], + "x-ms-correlation-request-id": [ + "ff0bf88f-7b3b-4d81-b371-bbdbf0828ee9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083905Z:ff0bf88f-7b3b-4d81-b371-bbdbf0828ee9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:39:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-request-id": [ + "022cdb10-7689-4e4c-a480-ab53e5032f94" + ], + "x-ms-correlation-request-id": [ + "022cdb10-7689-4e4c-a480-ab53e5032f94" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083920Z:022cdb10-7689-4e4c-a480-ab53e5032f94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:39:19 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "142382c3-f373-47ea-9b36-600793a7c14b" + ], + "x-ms-correlation-request-id": [ + "142382c3-f373-47ea-9b36-600793a7c14b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083935Z:142382c3-f373-47ea-9b36-600793a7c14b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:39:34 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-request-id": [ + "a8147378-6df7-47a3-bb8d-a4738ccda2da" + ], + "x-ms-correlation-request-id": [ + "a8147378-6df7-47a3-bb8d-a4738ccda2da" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T083950Z:a8147378-6df7-47a3-bb8d-a4738ccda2da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:39:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "ec5e3271-1f1b-440b-b48e-8f7199f489a6" + ], + "x-ms-correlation-request-id": [ + "ec5e3271-1f1b-440b-b48e-8f7199f489a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084005Z:ec5e3271-1f1b-440b-b48e-8f7199f489a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:40:05 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "9b9cb75f-359e-408b-ae21-51f717093246" + ], + "x-ms-correlation-request-id": [ + "9b9cb75f-359e-408b-ae21-51f717093246" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084020Z:9b9cb75f-359e-408b-ae21-51f717093246" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:40:19 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "bfd6e0b6-e491-4116-b9e0-35c0836c59ff" + ], + "x-ms-correlation-request-id": [ + "bfd6e0b6-e491-4116-b9e0-35c0836c59ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084035Z:bfd6e0b6-e491-4116-b9e0-35c0836c59ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:40:35 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "be033118-b01d-4edd-92cc-21ef5b5bc8b5" + ], + "x-ms-correlation-request-id": [ + "be033118-b01d-4edd-92cc-21ef5b5bc8b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T084050Z:be033118-b01d-4edd-92cc-21ef5b5bc8b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:40:50 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-GetReplicationLinkV2": [ + "onesdk4922", + "onesdk7612", + "onesdk9027", + "onesdk8734", + "onesdk3572" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabase.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabase.json new file mode 100644 index 000000000000..d3c2f3a03d99 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabase.json @@ -0,0 +1,2908 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6192?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "1c2ed93f-5a64-4e2b-9872-cc101f60b178" + ], + "x-ms-correlation-request-id": [ + "1c2ed93f-5a64-4e2b-9872-cc101f60b178" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085219Z:1c2ed93f-5a64-4e2b-9872-cc101f60b178" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:52:19 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6192?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-request-id": [ + "63a79c02-29ee-4344-95c8-8e003fbbf246" + ], + "x-ms-correlation-request-id": [ + "63a79c02-29ee-4344-95c8-8e003fbbf246" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085648Z:63a79c02-29ee-4344-95c8-8e003fbbf246" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:56:48 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6192?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192\",\r\n \"name\": \"onesdk6192\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-request-id": [ + "2622f921-947e-4498-aad1-082f5eb49918" + ], + "x-ms-correlation-request-id": [ + "2622f921-947e-4498-aad1-082f5eb49918" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085220Z:2622f921-947e-4498-aad1-082f5eb49918" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:52:20 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "8a606911-714d-4ab5-9b50-96e4fd98d460" + ], + "x-ms-correlation-request-id": [ + "8a606911-714d-4ab5-9b50-96e4fd98d460" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085220Z:8a606911-714d-4ab5-9b50-96e4fd98d460" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:52:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6192/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:b174e2b2-68d7-4f63-bfe7-17b3a82c5a2d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "78bceb80-83c8-488d-8c8b-112c72f32280" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085220Z:78bceb80-83c8-488d-8c8b-112c72f32280" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:52:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "1f9da47f-d82b-41b5-a2a0-2e8a900434dc" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9194' under resource group 'onesdk6192' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a93c15e9-795a-4e92-963c-ce2a7be67872" + ], + "x-ms-correlation-request-id": [ + "a93c15e9-795a-4e92-963c-ce2a7be67872" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085221Z:a93c15e9-795a-4e92-963c-ce2a7be67872" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:52:21 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3a71ec92-1ff4-4e52-b352-05698f4cb7e2" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194\",\r\n \"name\": \"onesdk9194\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9194.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "482ebf8e-79d9-4d7c-8617-711ecf1b0921" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "98db6109-1225-422d-a66e-544c7e1a1f50" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085315Z:98db6109-1225-422d-a66e-544c7e1a1f50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:53:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a8dbdc27-4237-49b1-a133-227d81d0326f" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194\",\r\n \"name\": \"onesdk9194\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9194.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "d1d9f056-7c56-475b-a88c-9e2d72e5e89f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-correlation-request-id": [ + "f469eb03-324b-4c7d-9c6f-bb59c8542f5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085315Z:f469eb03-324b-4c7d-9c6f-bb59c8542f5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:53:15 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ac551329-6fe4-403a-8596-2b3d26259713" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9194/databases/onesdk7818' under resource group 'onesdk6192' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8ad14161-1423-44e9-b9e2-8239d922eb51" + ], + "x-ms-correlation-request-id": [ + "8ad14161-1423-44e9-b9e2-8239d922eb51" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085315Z:8ad14161-1423-44e9-b9e2-8239d922eb51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:53:15 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "135" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dc9cc2d5-241c-4625-8c08-0aa117206003" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T01:53:16.718-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "f5d5d849-abf3-476c-9c11-8c5fbe466327" + ], + "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": [ + "1178" + ], + "x-ms-correlation-request-id": [ + "6eb2f273-aebe-4dd5-ae27-c5724365f79d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085317Z:6eb2f273-aebe-4dd5-ae27-c5724365f79d" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:53:16 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjVkNWQ4NDktYWJmMy00NzZjLTljMTEtOGM1ZmJlNDY2MzI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dc9cc2d5-241c-4625-8c08-0aa117206003" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:53:16.687Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "09386e97-1a4a-4df5-988e-7b1411cb7263" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "0e497ae8-871e-43c3-aabd-44bc9d05fc4a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085318Z:0e497ae8-871e-43c3-aabd-44bc9d05fc4a" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:53:18 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjVkNWQ4NDktYWJmMy00NzZjLTljMTEtOGM1ZmJlNDY2MzI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dc9cc2d5-241c-4625-8c08-0aa117206003" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:53:16.687Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "2db69e13-3d2e-4831-9d44-f31f73cb9c87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "5054bf83-e967-4fb7-aca5-a75fd82eb748" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085349Z:5054bf83-e967-4fb7-aca5-a75fd82eb748" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:53:49 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjVkNWQ4NDktYWJmMy00NzZjLTljMTEtOGM1ZmJlNDY2MzI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dc9cc2d5-241c-4625-8c08-0aa117206003" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:53:16.687Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "38e6ebaf-3ae8-47c6-aebd-8021627df0cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "dc02efae-f0c4-4943-97ef-86719d32b185" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085405Z:dc02efae-f0c4-4943-97ef-86719d32b185" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:54:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjVkNWQ4NDktYWJmMy00NzZjLTljMTEtOGM1ZmJlNDY2MzI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dc9cc2d5-241c-4625-8c08-0aa117206003" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:53:16.687Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "2a942619-790a-4201-9dbe-4b057371110f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "b445a674-67f8-418e-8c52-232d24da027c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085420Z:b445a674-67f8-418e-8c52-232d24da027c" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:54:20 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjVkNWQ4NDktYWJmMy00NzZjLTljMTEtOGM1ZmJlNDY2MzI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "dc9cc2d5-241c-4625-8c08-0aa117206003" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818\",\r\n \"name\": \"onesdk7818\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"689f05ba-a970-4ac5-b3a1-6e85f897514f\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:53:17.077Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T09:04:32.317Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "819" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "d4832078-485c-4db5-845b-d2f7d467a860" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "bc504b49-f2a0-4c2d-b44c-d426bc4fb562" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085436Z:bc504b49-f2a0-4c2d-b44c-d426bc4fb562" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:54:36 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2519?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI1MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "8b325f02-711a-4c6d-8c8a-25fca27e77ac" + ], + "x-ms-correlation-request-id": [ + "8b325f02-711a-4c6d-8c8a-25fca27e77ac" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085437Z:8b325f02-711a-4c6d-8c8a-25fca27e77ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:54:37 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2519?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI1MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-request-id": [ + "33dec0d1-fa09-40e2-877d-5e4dfd3ec710" + ], + "x-ms-correlation-request-id": [ + "33dec0d1-fa09-40e2-877d-5e4dfd3ec710" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085834Z:33dec0d1-fa09-40e2-877d-5e4dfd3ec710" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:58:34 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2519?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI1MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519\",\r\n \"name\": \"onesdk2519\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "e4fe998d-64f3-4a08-bddf-f45ff7723a8a" + ], + "x-ms-correlation-request-id": [ + "e4fe998d-64f3-4a08-bddf-f45ff7723a8a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085437Z:e4fe998d-64f3-4a08-bddf-f45ff7723a8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:54:37 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-request-id": [ + "8e1b986e-d86d-4f5f-a2ab-a9448c0d2df5" + ], + "x-ms-correlation-request-id": [ + "8e1b986e-d86d-4f5f-a2ab-a9448c0d2df5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085437Z:8e1b986e-d86d-4f5f-a2ab-a9448c0d2df5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:54:37 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2519/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:2fc57ad0-609f-48ea-a5f5-01875be39c0c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "64038788-9eb5-4807-8d40-2c0bcfb14a1d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085437Z:64038788-9eb5-4807-8d40-2c0bcfb14a1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:54:36 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7ff059cd-274e-4bca-866d-974598f6e2d0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6934' under resource group 'onesdk2519' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "72e063f8-7d90-4550-9642-13ee65045375" + ], + "x-ms-correlation-request-id": [ + "72e063f8-7d90-4550-9642-13ee65045375" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085437Z:72e063f8-7d90-4550-9642-13ee65045375" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:54:37 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "3d5201ac-7efa-4123-b536-f42796224021" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934\",\r\n \"name\": \"onesdk6934\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6934.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\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": [ + "467" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "a200ed70-5650-42a6-8618-8dcd4f700f5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "8e28175e-c30d-46c6-b53f-ff71e1b3f20d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085525Z:8e28175e-c30d-46c6-b53f-ff71e1b3f20d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:55:24 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4957ae3a-8bdc-4ad2-93a5-3677e7c8323a" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934\",\r\n \"name\": \"onesdk6934\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6934.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "a22259a9-c241-4166-8670-0df215bf3082" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-correlation-request-id": [ + "743a532b-0ca0-45d3-97ff-e54b8629b929" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085524Z:743a532b-0ca0-45d3-97ff-e54b8629b929" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:55:24 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "8f2dc0d2-5a53-4fe3-a8b3-7f2f09f8ab48" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6934/databases/onesdk7818' under resource group 'onesdk2519' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f39d6560-6fe1-46d5-b4ac-a524e52eba03" + ], + "x-ms-correlation-request-id": [ + "f39d6560-6fe1-46d5-b4ac-a524e52eba03" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085525Z:f39d6560-6fe1-46d5-b4ac-a524e52eba03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:55:24 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/Servers/onesdk9194/databases/onesdk7818\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "286" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "09fd13b1-5529-4c23-9eda-63f779998f32" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T01:55:25.981-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "79" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f0320364-2210-44f5-a0ab-500777882a67" + ], + "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": [ + "1176" + ], + "x-ms-correlation-request-id": [ + "dd38cb86-d8ab-45e3-8d98-194af2f44ff1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085526Z:dd38cb86-d8ab-45e3-8d98-194af2f44ff1" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:55:26 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "09fd13b1-5529-4c23-9eda-63f779998f32" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:55:26.31Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2304a860-66f3-40cc-ae5a-6209f8999137" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "1d0d1f1b-6369-4c2b-ac22-fcc73ce4948d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085527Z:1d0d1f1b-6369-4c2b-ac22-fcc73ce4948d" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:55:26 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "09fd13b1-5529-4c23-9eda-63f779998f32" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:55:26.31Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c04ae5ce-4816-4a16-b718-99bea9cc4b3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "582bef2c-e1cf-432b-956f-6f607e0decd4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085538Z:582bef2c-e1cf-432b-956f-6f607e0decd4" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:55:38 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "09fd13b1-5529-4c23-9eda-63f779998f32" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:55:26.31Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a1ee6cb8-9b1f-4d00-b6a9-599a20d67244" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "49cc5afd-0bf2-4600-bc63-5690beae42fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085554Z:49cc5afd-0bf2-4600-bc63-5690beae42fb" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:55:53 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "09fd13b1-5529-4c23-9eda-63f779998f32" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:55:26.31Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "38f1bd10-1887-413c-b7cf-04a986d51b94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "eb72833a-4eca-455b-81dc-fc762431f550" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085609Z:eb72833a-4eca-455b-81dc-fc762431f550" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:56:09 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "09fd13b1-5529-4c23-9eda-63f779998f32" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:55:26.31Z\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d23c6073-50bc-4020-ab86-560edb015e22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "b9c236c6-c8cb-434b-b2c2-87b2834fb018" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085625Z:b9c236c6-c8cb-434b-b2c2-87b2834fb018" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:56:25 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "09fd13b1-5529-4c23-9eda-63f779998f32" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818\",\r\n \"name\": \"onesdk7818\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ac399a5d-683d-4859-89d4-be2372d4e508\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:55:26.997Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T09:06:36.653Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "819" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "55865a5d-f8d2-4033-884b-4cbea861e24c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "360b5116-d06e-48ba-866f-c38382abada6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085641Z:360b5116-d06e-48ba-866f-c38382abada6" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:56:40 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a3782b23-6af0-45aa-be51-25228fd94b11" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/replicationLinks/f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"name\": \"f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk9194\",\r\n \"partnerDatabase\": \"onesdk7818\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"NonReadableSecondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"startTime\": \"2015-08-07T08:55:58.01\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "61d3af71-0595-47bd-bc10-7fb3c0377f33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "07032627-df8b-4838-bf8b-0ba2bc34293a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085642Z:07032627-df8b-4838-bf8b-0ba2bc34293a" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:56:42 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9f9e50c6-a8e1-4d4f-a6a3-f29c36ade2e0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/replicationLinks/f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"name\": \"f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6934\",\r\n \"partnerDatabase\": \"onesdk7818\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"NonReadableSecondary\",\r\n \"startTime\": \"2015-08-07T08:55:57.637\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "626" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "7925bfaf-ae83-4dd2-a578-6acf518b1254" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "d60a9540-6d81-4906-89b4-6c29427e8e06" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085643Z:d60a9540-6d81-4906-89b4-6c29427e8e06" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:56:42 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/replicationLinks?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a06e2e97-d9e6-43d7-b551-dc3be94988bc" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/replicationLinks/f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"name\": \"f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6934\",\r\n \"partnerDatabase\": \"onesdk7818\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"NonReadableSecondary\",\r\n \"startTime\": \"2015-08-07T08:55:57.637\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "626" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "2b34ab5f-00ee-4895-b954-eb6fef8da495" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "3cdc5e65-7bbf-42ae-8395-d4cca3ff657c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085643Z:3cdc5e65-7bbf-42ae-8395-d4cca3ff657c" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:56:43 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/replicationLinks/f0c75cee-f246-476b-a4eb-93bb94cc191b?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L3JlcGxpY2F0aW9uTGlua3MvZjBjNzVjZWUtZjI0Ni00NzZiLWE0ZWItOTNiYjk0Y2MxOTFiP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "12d00e0d-a483-4d3b-8e03-de13cc4b6b4b" + ] + }, + "ResponseBody": "{\r\n \"code\": \"MethodNotAllowed\",\r\n \"message\": \"Operation is not allowed on the resource.\",\r\n \"target\": null,\r\n \"details\": [],\r\n \"innererror\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124" + ], + "Content-Type": [ + "application/json" + ], + "x-ms-request-id": [ + "f31908e2-d20f-4bce-80fc-814c50200d0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-correlation-request-id": [ + "17f76271-aaed-4c02-9ae2-3f561433eb36" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085648Z:17f76271-aaed-4c02-9ae2-3f561433eb36" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:56:47 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 405 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6192?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-request-id": [ + "5e8e17b1-3a39-473f-8005-f1a7cc832a49" + ], + "x-ms-correlation-request-id": [ + "5e8e17b1-3a39-473f-8005-f1a7cc832a49" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085649Z:5e8e17b1-3a39-473f-8005-f1a7cc832a49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:56:48 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "03a84249-d51e-4039-ad54-635efd297ba4" + ], + "x-ms-correlation-request-id": [ + "03a84249-d51e-4039-ad54-635efd297ba4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085649Z:03a84249-d51e-4039-ad54-635efd297ba4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:56:48 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-request-id": [ + "46872d1e-d662-46fa-b9a5-b0a748e347d3" + ], + "x-ms-correlation-request-id": [ + "46872d1e-d662-46fa-b9a5-b0a748e347d3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085704Z:46872d1e-d662-46fa-b9a5-b0a748e347d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:57:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "7249ca45-82d5-47cb-b5af-fcd87edf3088" + ], + "x-ms-correlation-request-id": [ + "7249ca45-82d5-47cb-b5af-fcd87edf3088" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085719Z:7249ca45-82d5-47cb-b5af-fcd87edf3088" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:57:19 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-request-id": [ + "4cc1cddf-9b87-4a20-9fb7-f4536ac36426" + ], + "x-ms-correlation-request-id": [ + "4cc1cddf-9b87-4a20-9fb7-f4536ac36426" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085734Z:4cc1cddf-9b87-4a20-9fb7-f4536ac36426" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:57:34 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-request-id": [ + "be2bf34b-42a2-40b5-ab17-5ead58be6ea6" + ], + "x-ms-correlation-request-id": [ + "be2bf34b-42a2-40b5-ab17-5ead58be6ea6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085749Z:be2bf34b-42a2-40b5-ab17-5ead58be6ea6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:57:49 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "0f09b9fc-a0d4-4740-8ef1-f986c58203bd" + ], + "x-ms-correlation-request-id": [ + "0f09b9fc-a0d4-4740-8ef1-f986c58203bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085804Z:0f09b9fc-a0d4-4740-8ef1-f986c58203bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:58:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "a7c4c628-bf03-483e-bedb-7fa89f8bfb09" + ], + "x-ms-correlation-request-id": [ + "a7c4c628-bf03-483e-bedb-7fa89f8bfb09" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085819Z:a7c4c628-bf03-483e-bedb-7fa89f8bfb09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:58:19 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "a2a30d24-21a5-4196-a686-e49319738624" + ], + "x-ms-correlation-request-id": [ + "a2a30d24-21a5-4196-a686-e49319738624" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085834Z:a2a30d24-21a5-4196-a686-e49319738624" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:58:34 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2519?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI1MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-request-id": [ + "8d0f17cb-1e34-4c7d-ba45-cca1046e41d6" + ], + "x-ms-correlation-request-id": [ + "8d0f17cb-1e34-4c7d-ba45-cca1046e41d6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085835Z:8d0f17cb-1e34-4c7d-ba45-cca1046e41d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:58:34 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "4d8e8b87-a880-446f-a0c3-cc6e88833f48" + ], + "x-ms-correlation-request-id": [ + "4d8e8b87-a880-446f-a0c3-cc6e88833f48" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085835Z:4d8e8b87-a880-446f-a0c3-cc6e88833f48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:58:34 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-request-id": [ + "35b8bd6d-fefb-4427-b4cc-edaef0da9472" + ], + "x-ms-correlation-request-id": [ + "35b8bd6d-fefb-4427-b4cc-edaef0da9472" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085850Z:35b8bd6d-fefb-4427-b4cc-edaef0da9472" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:58:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-request-id": [ + "c02da2dd-b687-44d5-b174-d564162e0cb1" + ], + "x-ms-correlation-request-id": [ + "c02da2dd-b687-44d5-b174-d564162e0cb1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085905Z:c02da2dd-b687-44d5-b174-d564162e0cb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:59:04 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "d61ce202-1f1d-4bc5-af47-db5aa106fc1b" + ], + "x-ms-correlation-request-id": [ + "d61ce202-1f1d-4bc5-af47-db5aa106fc1b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085920Z:d61ce202-1f1d-4bc5-af47-db5aa106fc1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:59:20 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-request-id": [ + "c49c0ae5-ae37-4be1-b4cb-f97b3fcde507" + ], + "x-ms-correlation-request-id": [ + "c49c0ae5-ae37-4be1-b4cb-f97b3fcde507" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085935Z:c49c0ae5-ae37-4be1-b4cb-f97b3fcde507" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:59:35 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-request-id": [ + "bd46fb1b-c88c-4c07-8be0-cb6fdaf628c9" + ], + "x-ms-correlation-request-id": [ + "bd46fb1b-c88c-4c07-8be0-cb6fdaf628c9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T085950Z:bd46fb1b-c88c-4c07-8be0-cb6fdaf628c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 08:59:50 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-request-id": [ + "128624bb-a794-4fc5-8153-0156d45eda10" + ], + "x-ms-correlation-request-id": [ + "128624bb-a794-4fc5-8153-0156d45eda10" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090005Z:128624bb-a794-4fc5-8153-0156d45eda10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:00:05 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-request-id": [ + "010fed1b-29aa-4511-9fe9-ce29588474de" + ], + "x-ms-correlation-request-id": [ + "010fed1b-29aa-4511-9fe9-ce29588474de" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090020Z:010fed1b-29aa-4511-9fe9-ce29588474de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:00:20 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RemoveSecondaryDatabase": [ + "onesdk6192", + "onesdk9194", + "onesdk7818", + "onesdk2519", + "onesdk6934" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabaseV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabaseV2.json new file mode 100644 index 000000000000..9d135280b010 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabaseV2.json @@ -0,0 +1,2032 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7204?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "ec7a1eb9-f143-4782-b30d-2c7291b1dbe6" + ], + "x-ms-correlation-request-id": [ + "ec7a1eb9-f143-4782-b30d-2c7291b1dbe6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090941Z:ec7a1eb9-f143-4782-b30d-2c7291b1dbe6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7204?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "265f76c9-ee91-43a6-8168-5e7bb817cba1" + ], + "x-ms-correlation-request-id": [ + "265f76c9-ee91-43a6-8168-5e7bb817cba1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090958Z:265f76c9-ee91-43a6-8168-5e7bb817cba1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:57 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7204?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204\",\r\n \"name\": \"onesdk7204\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-request-id": [ + "94c92635-fabe-4c8b-973e-621077fc1d17" + ], + "x-ms-correlation-request-id": [ + "94c92635-fabe-4c8b-973e-621077fc1d17" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090941Z:94c92635-fabe-4c8b-973e-621077fc1d17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:41 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-request-id": [ + "c37fdaec-f81f-4651-ad2d-120cc9a7d582" + ], + "x-ms-correlation-request-id": [ + "c37fdaec-f81f-4651-ad2d-120cc9a7d582" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090941Z:c37fdaec-f81f-4651-ad2d-120cc9a7d582" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:41 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7204/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:5c18f955-cbcc-4b5b-b591-7a847d06e96a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "014fac7c-03f7-42b7-bdca-91a846e70187" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090941Z:014fac7c-03f7-42b7-bdca-91a846e70187" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:40 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDgwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "38b6b9db-ee47-4bc1-9632-c2c21bf4314d" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9080' under resource group 'onesdk7204' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3859d815-2811-4391-874f-f2deb0c51bf2" + ], + "x-ms-correlation-request-id": [ + "3859d815-2811-4391-874f-f2deb0c51bf2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090941Z:3859d815-2811-4391-874f-f2deb0c51bf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:41 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDgwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "6d14eff8-c653-4eb8-9ccb-d130d770e33e" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080\",\r\n \"name\": \"onesdk9080\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9080.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "4b633186-fc87-4595-af29-6a654e316df0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "829af16f-cc65-4904-ae39-7470be414cb0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090947Z:829af16f-cc65-4904-ae39-7470be414cb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:47 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDgwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b04bd955-b03f-4439-b1bd-38508e6984a5" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080\",\r\n \"name\": \"onesdk9080\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9080.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "30f6fba2-8896-4b17-8aef-c4eb7308671b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "d941dfcb-ffb2-47b0-bdce-1d63e4c739d8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090947Z:d941dfcb-ffb2-47b0-bdce-1d63e4c739d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:47 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080/databases/onesdk1558?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDgwL2RhdGFiYXNlcy9vbmVzZGsxNTU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b8d55351-aab9-4503-a058-9c5ad4d9be25" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9080/databases/onesdk1558' under resource group 'onesdk7204' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "ac1a0a52-235e-47aa-ba0c-89ee42f55e55" + ], + "x-ms-correlation-request-id": [ + "ac1a0a52-235e-47aa-ba0c-89ee42f55e55" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090947Z:ac1a0a52-235e-47aa-ba0c-89ee42f55e55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:47 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080/databases/onesdk1558?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDgwL2RhdGFiYXNlcy9vbmVzZGsxNTU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "139" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "b4ea5b98-7f68-4c0f-b29b-879c89fafd4f" + ] + }, + "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080/databases/onesdk1558\",\r\n \"name\": \"onesdk1558\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f1ce7b22-1e20-423f-a1d7-f1f3578a93e8\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T09:09:50.24Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-07T09:10:50.24Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "774" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "6fe94db6-03e5-479a-a0e4-8aa43da31776" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "521be526-163f-41a3-ae84-f8d10385d1dc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090951Z:521be526-163f-41a3-ae84-f8d10385d1dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:51 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "3dbabd82-cb8c-4ac2-94b0-390ad662b85e" + ], + "x-ms-correlation-request-id": [ + "3dbabd82-cb8c-4ac2-94b0-390ad662b85e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090951Z:3dbabd82-cb8c-4ac2-94b0-390ad662b85e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:51 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-request-id": [ + "891132c8-f15a-4e33-8df6-a85458978715" + ], + "x-ms-correlation-request-id": [ + "891132c8-f15a-4e33-8df6-a85458978715" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091144Z:891132c8-f15a-4e33-8df6-a85458978715" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:11:43 GMT" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602\",\r\n \"name\": \"onesdk4602\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-request-id": [ + "cd6c9b65-880d-415f-81c3-88bd593ab103" + ], + "x-ms-correlation-request-id": [ + "cd6c9b65-880d-415f-81c3-88bd593ab103" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090951Z:cd6c9b65-880d-415f-81c3-88bd593ab103" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:51 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "b123af22-8666-4e3c-8f13-7a1e679113cd" + ], + "x-ms-correlation-request-id": [ + "b123af22-8666-4e3c-8f13-7a1e679113cd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090952Z:b123af22-8666-4e3c-8f13-7a1e679113cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4602/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "45" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "centralus:22a271aa-a0ef-464d-a9df-ecd8aa3e3c88" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "9667c357-0345-452e-a50e-1484820c7396" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090952Z:9667c357-0345-452e-a50e-1484820c7396" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNjExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "7555e3aa-364d-4ff5-acd3-c40e796a956e" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3611' under resource group 'onesdk4602' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "146" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5ffeee19-f703-450d-b484-ed6b4a7d1d49" + ], + "x-ms-correlation-request-id": [ + "5ffeee19-f703-450d-b484-ed6b4a7d1d49" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090952Z:5ffeee19-f703-450d-b484-ed6b4a7d1d49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:51 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNjExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ea9b2ce2-6d5d-4bdb-ace0-66460332b15d" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611\",\r\n \"name\": \"onesdk3611\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3611.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "a4fa471a-bf3c-4a33-a65b-dfc22edfb969" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "c635c88b-52b3-4488-aebd-8a3d6c57edfa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090957Z:c635c88b-52b3-4488-aebd-8a3d6c57edfa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:56 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNjExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "183" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "f3ab0404-9e46-4a17-aa63-3c9d43796a6b" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611\",\r\n \"name\": \"onesdk3611\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3611.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "483" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "995b1f33-79c8-4c9e-b0c1-835471cce18b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "fc91d115-98de-45ca-95e5-1f4a6e4a7039" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090956Z:fc91d115-98de-45ca-95e5-1f4a6e4a7039" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:55 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611/databases/onesdk1558?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNjExL2RhdGFiYXNlcy9vbmVzZGsxNTU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "9e5fb792-5a09-4fba-ae1a-8322c4f2b085" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3611/databases/onesdk1558' under resource group 'onesdk4602' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "167" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "413f6124-c833-48c0-83e9-510254d76c9c" + ], + "x-ms-correlation-request-id": [ + "413f6124-c833-48c0-83e9-510254d76c9c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090956Z:413f6124-c833-48c0-83e9-510254d76c9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:56 GMT" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611/databases/onesdk1558?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNjExL2RhdGFiYXNlcy9vbmVzZGsxNTU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/Servers/onesdk9080/databases/onesdk1558\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "290" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "aecb4bf1-1b90-4abb-aec1-1fb4424476ef" + ] + }, + "ResponseBody": "{\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"details\": [\r\n {\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"severity\": \"16\"\r\n }\r\n ],\r\n \"innererror\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "305" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "acb11f9c-6874-48af-8e6b-65d044bf0ee1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "c174f327-7419-4981-985f-e963271d6793" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090957Z:c174f327-7419-4981-985f-e963271d6793" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:57 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7204?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-request-id": [ + "360e2858-d657-4ba1-b948-7b968c060653" + ], + "x-ms-correlation-request-id": [ + "360e2858-d657-4ba1-b948-7b968c060653" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090958Z:360e2858-d657-4ba1-b948-7b968c060653" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-request-id": [ + "3ce0e56d-161d-45da-810c-8b77de9c0ee2" + ], + "x-ms-correlation-request-id": [ + "3ce0e56d-161d-45da-810c-8b77de9c0ee2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T090958Z:3ce0e56d-161d-45da-810c-8b77de9c0ee2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:09:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "de06b9f2-c461-44a1-8eab-26ced5a5ac62" + ], + "x-ms-correlation-request-id": [ + "de06b9f2-c461-44a1-8eab-26ced5a5ac62" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091013Z:de06b9f2-c461-44a1-8eab-26ced5a5ac62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:10:12 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-request-id": [ + "1bd7d9ac-895d-43af-9129-72cb7c1a49ee" + ], + "x-ms-correlation-request-id": [ + "1bd7d9ac-895d-43af-9129-72cb7c1a49ee" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091028Z:1bd7d9ac-895d-43af-9129-72cb7c1a49ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:10:27 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "1381e36a-0e50-4fbe-b9d3-ce8ce83dfb6c" + ], + "x-ms-correlation-request-id": [ + "1381e36a-0e50-4fbe-b9d3-ce8ce83dfb6c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091043Z:1381e36a-0e50-4fbe-b9d3-ce8ce83dfb6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:10:42 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "383f8cb6-8e16-47ab-a5ea-d8f479ad0e4f" + ], + "x-ms-correlation-request-id": [ + "383f8cb6-8e16-47ab-a5ea-d8f479ad0e4f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091058Z:383f8cb6-8e16-47ab-a5ea-d8f479ad0e4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:10:58 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "1bbd3125-e187-4a37-90c7-501b1bedc683" + ], + "x-ms-correlation-request-id": [ + "1bbd3125-e187-4a37-90c7-501b1bedc683" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091113Z:1bbd3125-e187-4a37-90c7-501b1bedc683" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:11:13 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-request-id": [ + "59f1357b-f75b-47f3-a160-bca0c67871e7" + ], + "x-ms-correlation-request-id": [ + "59f1357b-f75b-47f3-a160-bca0c67871e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091128Z:59f1357b-f75b-47f3-a160-bca0c67871e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:11:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-request-id": [ + "c84fe705-099c-4b61-822c-cc20685c7cc0" + ], + "x-ms-correlation-request-id": [ + "c84fe705-099c-4b61-822c-cc20685c7cc0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091143Z:c84fe705-099c-4b61-822c-cc20685c7cc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:11:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4602?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-request-id": [ + "c302e47e-6990-4e29-8d00-89b1b1831086" + ], + "x-ms-correlation-request-id": [ + "c302e47e-6990-4e29-8d00-89b1b1831086" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091144Z:c302e47e-6990-4e29-8d00-89b1b1831086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:11:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "7254a56b-ae10-4879-9903-1d710852f3a8" + ], + "x-ms-correlation-request-id": [ + "7254a56b-ae10-4879-9903-1d710852f3a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091144Z:7254a56b-ae10-4879-9903-1d710852f3a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:11:43 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-request-id": [ + "1c9ebbe0-4fde-48a3-9fa1-72f81bec5606" + ], + "x-ms-correlation-request-id": [ + "1c9ebbe0-4fde-48a3-9fa1-72f81bec5606" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091159Z:1c9ebbe0-4fde-48a3-9fa1-72f81bec5606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:11:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "5d345e68-e075-439b-b83c-dfe7e9a65c57" + ], + "x-ms-correlation-request-id": [ + "5d345e68-e075-439b-b83c-dfe7e9a65c57" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091214Z:5d345e68-e075-439b-b83c-dfe7e9a65c57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:12:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-request-id": [ + "055def36-b1fd-4dcf-ad3c-571a5ad6bff2" + ], + "x-ms-correlation-request-id": [ + "055def36-b1fd-4dcf-ad3c-571a5ad6bff2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091229Z:055def36-b1fd-4dcf-ad3c-571a5ad6bff2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:12:28 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-request-id": [ + "1924450d-b74e-4424-9a25-322f925ff01f" + ], + "x-ms-correlation-request-id": [ + "1924450d-b74e-4424-9a25-322f925ff01f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091244Z:1924450d-b74e-4424-9a25-322f925ff01f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:12:44 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "d386359d-a152-489d-9e07-6b614dfac25e" + ], + "x-ms-correlation-request-id": [ + "d386359d-a152-489d-9e07-6b614dfac25e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091259Z:d386359d-a152-489d-9e07-6b614dfac25e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:12:59 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-request-id": [ + "98850120-3544-470e-940c-0cdffede435f" + ], + "x-ms-correlation-request-id": [ + "98850120-3544-470e-940c-0cdffede435f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091315Z:98850120-3544-470e-940c-0cdffede435f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:13:14 GMT" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-version": [ + "2014-04-01-preview" + ], + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "c831c0a6-07e1-4220-a5b4-dec80a441504" + ], + "x-ms-correlation-request-id": [ + "c831c0a6-07e1-4220-a5b4-dec80a441504" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20150807T091330Z:c831c0a6-07e1-4220-a5b4-dec80a441504" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 07 Aug 2015 09:13:29 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Test-RemoveSecondaryDatabaseV2": [ + "onesdk7204", + "onesdk9080", + "onesdk1558", + "onesdk4602", + "onesdk3611" + ] + }, + "Variables": { + "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlDatabaseAuditingPolicy.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlDatabaseAuditingPolicy.cs index b7d5f642a92a..8441356bc111 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlDatabaseAuditingPolicy.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlDatabaseAuditingPolicy.cs @@ -115,7 +115,7 @@ protected override DatabaseAuditingPolicyModel ApplyUserInputToModel(DatabaseAud if ((orgAuditStateType == AuditStateType.New) && (model.RetentionInDays > 0)) { // If retention days is greater than 0 and no audit table identifier is supplied , we throw exception giving the user hint on the recommended TableIdentifier we got from the CSM - throw new Exception(string.Format(Resources.InvalidRetentionTypeSet, model.TableIdentifier)); + throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidRetentionTypeSet, model.TableIdentifier)); } } else diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlServerAuditingPolicy.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlServerAuditingPolicy.cs index 806606a78e2d..99c48f01e3b4 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlServerAuditingPolicy.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlServerAuditingPolicy.cs @@ -120,7 +120,7 @@ protected override ServerAuditingPolicyModel ApplyUserInputToModel(ServerAuditin if ((orgAuditStateType == AuditStateType.New) && (model.RetentionInDays > 0)) { // If retention days is greater than 0 and no audit table identifier is supplied , we throw exception giving the user hint on the recommended TableIdentifier we got from the CSM - throw new Exception(string.Format(Resources.InvalidRetentionTypeSet, model.TableIdentifier)); + throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidRetentionTypeSet, model.TableIdentifier)); } } else diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/UseAzureSqlServerAuditingPolicy.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/UseAzureSqlServerAuditingPolicy.cs index 525a84303033..daae27a38958 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/UseAzureSqlServerAuditingPolicy.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/UseAzureSqlServerAuditingPolicy.cs @@ -59,7 +59,7 @@ protected string GetStorageAccountName() string storageAccountName = ModelAdapter.GetServerStorageAccount(ResourceGroupName, ServerName, clientRequestId); if (string.IsNullOrEmpty(storageAccountName)) { - throw new Exception(string.Format(Resources.UseServerWithoutStorageAccount)); + throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.UseServerWithoutStorageAccount)); } return storageAccountName; } diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Services/SqlAuditAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Services/SqlAuditAdapter.cs index 59cb8dec7bc6..ffe753784013 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Services/SqlAuditAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Services/SqlAuditAdapter.cs @@ -256,7 +256,7 @@ public void SetDatabaseAuditingPolicy(DatabaseAuditingPolicyModel model, String { if (!IsDatabaseInServiceTierForPolicy(model, clientId)) { - throw new Exception(Resources.DatabaseNotInServiceTierForAuditingPolicy); + throw new Exception(Microsoft.Azure.Commands.Sql.Properties.Resources.DatabaseNotInServiceTierForAuditingPolicy); } DatabaseAuditingPolicyCreateOrUpdateParameters parameters = PolicizeDatabaseAuditingModel(model); Communicator.SetDatabaseAuditingPolicy(model.ResourceGroupName, model.ServerName, model.DatabaseName, clientId, parameters); @@ -343,7 +343,7 @@ private string ExtractStorageAccountName(BaseAuditingPolicyModel model) } if (string.IsNullOrEmpty(storageAccountName) && (!IgnoreStorage)) // can happen if the user didn't provide account name for a policy that lacked it { - throw new Exception(string.Format(Resources.NoStorageAccountWhenConfiguringAuditingPolicy)); + throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.NoStorageAccountWhenConfiguringAuditingPolicy)); } return storageAccountName; } diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj index 235eeba49d73..5ec37e5639fd 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj +++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj @@ -51,6 +51,31 @@ false + + + + + + + + + + True + True + Resources.resx + + + Always + + + Designer + + + + Always + Designer + + @@ -65,6 +90,10 @@ + + + + @@ -81,86 +110,35 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Always - - - + + + + + + + + - - + - + + - @@ -174,43 +152,83 @@ - - - True - True - Resources.resx - - - + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + - - Designer - + + + + + + + + + + + + + + @@ -225,7 +243,7 @@ ..\..\..\packages\Hyak.Common.1.0.2\lib\net45\Hyak.Common.dll - ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.1.4-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\packages\Microsoft.Azure.Common.Authentication.1.1.3-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll True @@ -348,4 +366,4 @@ - + \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs b/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs index ae42f6438ccd..02ffc7b4d23c 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Common/AzureEndpointsCommunicator.cs @@ -155,7 +155,7 @@ public Dictionary GetStorageKeys(string resourceGroupNam } catch { - throw new Exception(string.Format(Resources.StorageAccountNotFound, storageAccountName)); + throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.StorageAccountNotFound, storageAccountName)); } } @@ -186,7 +186,7 @@ public string GetStorageResourceGroup(string storageAccountName) } else { - throw new Exception(string.Format(Resources.StorageAccountNotFound, storageAccountName)); + throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.StorageAccountNotFound, storageAccountName)); } }; try @@ -217,7 +217,7 @@ public string GetStorageTableEndpoint(AzureSMProfile profile, string storageAcco } catch { - throw new Exception(string.Format(Resources.StorageAccountNotFound, storageAccountName)); + throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.StorageAccountNotFound, storageAccountName)); } } } 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 d669b1261292..2c8c4dbeb7c2 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/BuildAzureSqlDatabaseDataMaskingRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/BuildAzureSqlDatabaseDataMaskingRule.cs @@ -115,7 +115,7 @@ protected string ValidateRuleTarget(IEnumerable ru { if (rules.Any(r => r.TableName == TableName && r.ColumnName == ColumnName && r.RuleId != RuleId)) { - return string.Format(CultureInfo.InvariantCulture, Resources.DataMaskingTableAndColumnUsedError, TableName, ColumnName); + return string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.DataMaskingTableAndColumnUsedError, TableName, ColumnName); } return null; } @@ -127,9 +127,21 @@ protected string ValidateRuleTarget(IEnumerable ru /// An updated rule model protected DatabaseDataMaskingRuleModel UpdateRule(DatabaseDataMaskingRuleModel rule) { - rule.SchemaName = SchemaName; - rule.TableName = TableName; - rule.ColumnName = ColumnName; + if (!string.IsNullOrEmpty(SchemaName)) // only update if the user provided this value + { + rule.SchemaName = SchemaName; + } + + if (!string.IsNullOrEmpty(TableName)) // only update if the user provided this value + { + rule.TableName = TableName; + } + + if (!string.IsNullOrEmpty(ColumnName)) // only update if the user provided this value + { + rule.ColumnName = ColumnName; + } + if(!string.IsNullOrEmpty(MaskingFunction)) // only update if the user provided this value { rule.MaskingFunction = ModelizeMaskingFunction(); @@ -192,7 +204,7 @@ protected DatabaseDataMaskingRuleModel UpdateRule(DatabaseDataMaskingRuleModel r if(rule.NumberFrom > rule.NumberTo) { - throw new Exception(string.Format(CultureInfo.InvariantCulture, Resources.DataMaskingNumberRuleIntervalDefinitionError)); + throw new Exception(string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.DataMaskingNumberRuleIntervalDefinitionError)); } } return rule; 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 f6f7b5275e51..eb1c5de459e8 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/NewAzureSqlDatabaseDataMaskingRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/NewAzureSqlDatabaseDataMaskingRule.cs @@ -79,11 +79,11 @@ protected override string ValidateOperation(IEnumerable r.RuleId == RuleId)) { - return string.Format(CultureInfo.InvariantCulture, Resources.NewDataMaskingRuleIdAlreadyExistError, RuleId); + return string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.NewDataMaskingRuleIdAlreadyExistError, RuleId); } return null; } diff --git a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/RemoveAzureSqlDatabaseDataMaskingRule.cs b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/RemoveAzureSqlDatabaseDataMaskingRule.cs index 6c46679dc916..68ba605d9984 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/RemoveAzureSqlDatabaseDataMaskingRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/RemoveAzureSqlDatabaseDataMaskingRule.cs @@ -47,9 +47,9 @@ public class RemoveAzureSqlDatabaseDataMaskingRule : SqlDatabaseDataMaskingRuleC protected override IEnumerable PersistChanges(IEnumerable rules) { if (!Force.IsPresent && !ShouldProcess( - string.Format(CultureInfo.InvariantCulture, Resources.RemoveDatabaseDataMaskingRuleDescription, RuleId, DatabaseName), - string.Format(CultureInfo.InvariantCulture, Resources.RemoveDatabaseDataMaskingRuleWarning, RuleId, DatabaseName), - Resources.ShouldProcessCaption)) + 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), + 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 fddc8165d783..813e284c81b0 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/SetAzureSqlDatabaseDataMaskingRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Cmdlet/SetAzureSqlDatabaseDataMaskingRule.cs @@ -64,7 +64,7 @@ protected override string ValidateOperation(IEnumerable r.RuleId == RuleId)) { - return string.Format(CultureInfo.InvariantCulture, Resources.SetDataMaskingRuleIdDoesNotExistError, RuleId); + return string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.SetDataMaskingRuleIdDoesNotExistError, RuleId); } return null; } 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 6e43c5126e54..a48dd209fdc8 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Data Masking/Services/SqlDataMaskingAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Data Masking/Services/SqlDataMaskingAdapter.cs @@ -84,7 +84,7 @@ public IList GetDatabaseDataMaskingRule(string res select ModelizeDatabaseDataMaskingRule(r, resourceGroup, serverName, databaseName)).ToList(); if(ruleId != null && rules.Count == 0) { - throw new Exception(string.Format(CultureInfo.InvariantCulture, Resources.DataMaskingRuleDoesNotExist, ruleId)); + throw new Exception(string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.DataMaskingRuleDoesNotExist, ruleId)); } return rules; } diff --git a/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/NewAzureSqlDatabase.cs b/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/NewAzureSqlDatabase.cs index 961595936e77..a6e049830668 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/NewAzureSqlDatabase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/NewAzureSqlDatabase.cs @@ -116,7 +116,7 @@ protected override IEnumerable GetEntity() // The database already exists throw new PSArgumentException( - string.Format(Resources.DatabaseNameExists, this.DatabaseName, this.ServerName), + string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.DatabaseNameExists, this.DatabaseName, this.ServerName), "DatabaseName"); } diff --git a/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/RemoveAzureSqlDatabase.cs b/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/RemoveAzureSqlDatabase.cs index a70a989c4626..9cb68926684a 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/RemoveAzureSqlDatabase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Database/Cmdlet/RemoveAzureSqlDatabase.cs @@ -79,9 +79,9 @@ protected override IEnumerable PersistChanges(IEnumerable public override void ExecuteCmdlet() { if (!Force.IsPresent && !ShouldProcess( - string.Format(CultureInfo.InvariantCulture, Resources.RemoveAzureSqlDatabaseDescription, this.DatabaseName, this.ServerName), - string.Format(CultureInfo.InvariantCulture, Resources.RemoveAzureSqlDatabaseWarning, this.DatabaseName, this.ServerName), - Resources.ShouldProcessCaption)) + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveAzureSqlDatabaseDescription, this.DatabaseName, this.ServerName), + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveAzureSqlDatabaseWarning, this.DatabaseName, this.ServerName), + Microsoft.Azure.Commands.Sql.Properties.Resources.ShouldProcessCaption)) { return; } diff --git a/src/ResourceManager/Sql/Commands.Sql/Database/Services/AzureSqlDatabaseAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Database/Services/AzureSqlDatabaseAdapter.cs index 8b5ac7feeb67..11871d43f037 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Database/Services/AzureSqlDatabaseAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Database/Services/AzureSqlDatabaseAdapter.cs @@ -242,7 +242,7 @@ internal IEnumerable ListDatabaseActivity(string } else { - throw new NotSupportedException(string.Format(CultureInfo.InvariantCulture, Resources.StandaloneDatabaseActivityNotSupported)); + throw new NotSupportedException(string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.StandaloneDatabaseActivityNotSupported)); } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Cmdlet/NewAzureSqlElasticPool.cs b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Cmdlet/NewAzureSqlElasticPool.cs index e4ca4d73df36..73550a07d6d3 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Cmdlet/NewAzureSqlElasticPool.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Cmdlet/NewAzureSqlElasticPool.cs @@ -110,7 +110,7 @@ protected override IEnumerable GetEntity() // The database already exists throw new PSArgumentException( - string.Format(Resources.ElasticPoolNameExists, this.ElasticPoolName, this.ServerName), + string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.ElasticPoolNameExists, this.ElasticPoolName, this.ServerName), "ElasticPoolName"); } diff --git a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Cmdlet/RemoveAzureSqlElasticPool.cs b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Cmdlet/RemoveAzureSqlElasticPool.cs index ef972699c689..0aee7aaa5f83 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Cmdlet/RemoveAzureSqlElasticPool.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Elastic Pools/Cmdlet/RemoveAzureSqlElasticPool.cs @@ -79,9 +79,9 @@ protected override IEnumerable PersistChanges(IEnumera public override void ExecuteCmdlet() { if (!Force.IsPresent && !ShouldProcess( - string.Format(CultureInfo.InvariantCulture, Resources.RemoveAzureSqlDatabaseElasticPoolDescription, this.ElasticPoolName, this.ServerName), - string.Format(CultureInfo.InvariantCulture, Resources.RemoveAzureSqlDatabaseElasticPoolWarning, this.ElasticPoolName, this.ServerName), - Resources.ShouldProcessCaption)) + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveAzureSqlDatabaseElasticPoolDescription, this.ElasticPoolName, this.ServerName), + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveAzureSqlDatabaseElasticPoolWarning, this.ElasticPoolName, this.ServerName), + Microsoft.Azure.Commands.Sql.Properties.Resources.ShouldProcessCaption)) { return; } diff --git a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/NewAzureSqlServerFirewallRule.cs b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/NewAzureSqlServerFirewallRule.cs index a913115c2857..f5eb561e0def 100644 --- a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/NewAzureSqlServerFirewallRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/NewAzureSqlServerFirewallRule.cs @@ -109,7 +109,7 @@ public class NewAzureSqlServerFirewallRule : AzureSqlServerFirewallRuleCmdletBas // The server already exists throw new PSArgumentException( - string.Format(Resources.ServerFirewallRuleNameExists, this.FirewallRuleName, this.ServerName), + string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.ServerFirewallRuleNameExists, this.FirewallRuleName, this.ServerName), "FirewallRule"); } diff --git a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/RemoveAzureSqlServerFirewallRule.cs b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/RemoveAzureSqlServerFirewallRule.cs index 7fae7ec81fad..368153d6892a 100644 --- a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/RemoveAzureSqlServerFirewallRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/RemoveAzureSqlServerFirewallRule.cs @@ -81,9 +81,9 @@ public class RemoveAzureSqlServerFirewallRule : AzureSqlServerFirewallRuleCmdlet public override void ExecuteCmdlet() { if (!Force.IsPresent && !ShouldProcess( - string.Format(CultureInfo.InvariantCulture, Resources.RemoveAzureSqlServerFirewallRuleDescription, this.FirewallRuleName, this.ServerName), - string.Format(CultureInfo.InvariantCulture, Resources.RemoveAzureSqlServerFirewallRuleWarning, this.FirewallRuleName, this.ServerName), - Resources.ShouldProcessCaption)) + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveAzureSqlServerFirewallRuleDescription, this.FirewallRuleName, this.ServerName), + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveAzureSqlServerFirewallRuleWarning, this.FirewallRuleName, this.ServerName), + Microsoft.Azure.Commands.Sql.Properties.Resources.ShouldProcessCaption)) { return; } diff --git a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.Types.ps1xml b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.Types.ps1xml new file mode 100644 index 000000000000..204ebf082aca --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.Types.ps1xml @@ -0,0 +1,56 @@ + + + + Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel + + + PSStandardMembers + + + DefaultDisplayPropertySet + + LinkId + ResourceGroupName + ServerName + DatabaseName + Role + Location + PartnerResourceGroupName + PartnerServerName + PartnerRole + PartnerLocation + AllowConnections + ReplicationState + PercentComplete + StartTime + + + + + + + + Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel + + + PSStandardMembers + + + DefaultDisplayPropertySet + + ResourceGroupName + ServerName + DatabaseName + Location + CopyResourceGroupName + CopyServerName + CopyDatabaseName + CopyLocation + CreationDate + + + + + + + diff --git a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml index 7c6f6422c2d5..9aec3209acdd 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml +++ b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml @@ -2,51 +2,44 @@ - Disable-AzureSqlDatabaseDirectAccess + Get-AzureSqlDatabase - Disables the option to directly access an Azure SQL Database (without auditing). + Returns one or more Azure SQL Database. - Disable - AzureSqlDatabaseDirectAccess + Get + AzureSqlDatabase - The Disable-AzureSqlDatabaseDirectAccess cmdlet disables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet, directly accessing an Azure Sql Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) + Use this cmdlet to retrieve one or more Azure SQL Database from an Azure SQL Database Server. Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - Disable-AzureSqlDatabaseDirectAccess - - PassThru + Get-AzureSqlDatabase + + DatabaseName - Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + The name of the Azure SQL Database to retrieve. - SwitchParameter + String ServerName - Specifies the name of the database server holding the database. - - String - - - DatabaseName - - Specifies the name of the database. Wildcards are not permitted. + The name of the Azure SQL Database Server the database is in. String ResourceGroupName - Specifies the name of the resource group of the database. + The name of the resource group of the server containing the database to retrieve. String @@ -60,22 +53,10 @@ Switch-AzureMode –Name AzureResourceManager - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - SwitchParameter - - - none - - - ServerName + + DatabaseName - Specifies the name of the database server holding the database. + The name of the Azure SQL Database to retrieve. String @@ -84,10 +65,10 @@ Switch-AzureMode –Name AzureResourceManager none - - DatabaseName + + ServerName - Specifies the name of the database. Wildcards are not permitted. + The name of the Azure SQL Database Server the database is in. String @@ -99,7 +80,7 @@ Switch-AzureMode –Name AzureResourceManager ResourceGroupName - Specifies the name of the resource group of the database. + The name of the resource group of the server containing the database to retrieve. String @@ -129,7 +110,8 @@ Switch-AzureMode –Name AzureResourceManager - None + +System.String @@ -141,7 +123,8 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel + +System.Object @@ -155,13 +138,33 @@ Switch-AzureMode –Name AzureResourceManager - -------------------------- Code Example -------------------------- + -------------------------- Code Example 1 -------------------------- PS C:\> - PS C:\>Disable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" + PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" + This example returns all databases on server, "server1". + + + + + + + + + + + + + -------------------------- Code Example 2 -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" + + This example returns database named "database1", from server "server1". @@ -181,7 +184,15 @@ Switch-AzureMode –Name AzureResourceManager - Enable-AzureSqlDatabaseDirectAccess + New-AzureSqlDatabase + + + + Remove-AzureSqlDatabase + + + + Set-AzureSqlDatabase @@ -189,51 +200,59 @@ Switch-AzureMode –Name AzureResourceManager - Enable-AzureSqlDatabaseDirectAccess + Get-AzureSqlDatabaseActivity - Enables the option to directly access an Azure SQL Database (with auditing). + Gets the status of database operations in an elastic database pool. - Enable - AzureSqlDatabaseDirectAccess + Get + AzureSqlDatabaseActivity - The Enable-AzureSqlDatabaseDirectAccess cmdlet enables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.After the successful execution of the cmdlet, directly accessing to an Azure SQL Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName). - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + Gets the status of moving elastic databases in and out of an elastic pool. + +Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - Enable-AzureSqlDatabaseDirectAccess - - PassThru + Get-AzureSqlDatabaseActivity + + ServerName - Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + The name of the Azure SQL Server that the elastic pool is in. - SwitchParameter + String - - ServerName + + ElasticPoolName - The name of the server containing the database. + The name of the Azure SQL elastic pool. String - + DatabaseName - The name of the database. + String + + OperationId + + + + Nullable`1[Guid] + ResourceGroupName - Specifies the name of the resource group of the database. + The name of the resource group containing the Azure SQL Server that the elastic pool is in. String @@ -247,22 +266,22 @@ Switch-AzureMode –Name AzureResourceManager - - PassThru + + ServerName - Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + The name of the Azure SQL Server that the elastic pool is in. - SwitchParameter + String - SwitchParameter + String none - - ServerName + + ElasticPoolName - The name of the server containing the database. + The name of the Azure SQL elastic pool. String @@ -271,22 +290,34 @@ Switch-AzureMode –Name AzureResourceManager none - + DatabaseName - The name of the database. + String String - none + + + + OperationId + + + + Nullable`1[Guid] + + Nullable`1[Guid] + + + ResourceGroupName - Specifies the name of the resource group of the database. + The name of the resource group containing the Azure SQL Server that the elastic pool is in. String @@ -316,7 +347,8 @@ Switch-AzureMode –Name AzureResourceManager - None + +System.String @@ -328,7 +360,8 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel + +System.Object @@ -342,13 +375,13 @@ Switch-AzureMode –Name AzureResourceManager - -------------------------- Code Example -------------------------- + -------------------------- Example -------------------------- PS C:\> - PS C:\>Enable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" + PS C:\>Get-AzureSqlDatabaseActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" - + The following example returns the operation status of all databases in an elastic pool named "elasticpool1". @@ -367,70 +400,66 @@ Switch-AzureMode –Name AzureResourceManager Azure_SqlDatabase - - Disable-AzureSqlDatabaseDirectAccess - - - Get-AzureSqlDatabase + Get-AzureSqlDatabaseAuditingPolicy - Returns one or more Azure SQL Database. + Gets an Azure SQL Database's auditing policy. Get - AzureSqlDatabase + AzureSqlDatabaseAuditingPolicy - Use this cmdlet to retrieve one or more Azure SQL Database from an Azure SQL Database Server. + The Get-AzureSqlDatabaseAuditingPolicy cmdlet gets the auditing policy of an Azure Sql database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - Get-AzureSqlDatabase - - DatabaseName + Get-AzureSqlDatabaseAuditingPolicy + + ServerName - The name of the Azure SQL Database to retrieve. + The name of the server that contains the database. String - - ServerName + + DatabaseName - The name of the Azure SQL Database Server the database is in. + The name of the database. String ResourceGroupName - The name of the resource group of the server containing the database to retrieve. + The name of the resource group that contains the database. String Profile - In-memory profile. + In-Memory profile. AzureProfile - - DatabaseName + + ServerName - The name of the Azure SQL Database to retrieve. + The name of the server that contains the database. String @@ -439,10 +468,10 @@ Switch-AzureMode –Name AzureResourceManager none - - ServerName + + DatabaseName - The name of the Azure SQL Database Server the database is in. + The name of the database. String @@ -454,7 +483,7 @@ Switch-AzureMode –Name AzureResourceManager ResourceGroupName - The name of the resource group of the server containing the database to retrieve. + The name of the resource group that contains the database. String @@ -466,7 +495,7 @@ Switch-AzureMode –Name AzureResourceManager Profile - In-memory profile. + In-Memory profile. AzureProfile @@ -484,7 +513,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +None @@ -496,7 +526,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel @@ -505,38 +536,18 @@ Switch-AzureMode –Name AzureResourceManager - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). - -------------------------- Code Example 1 -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" - - This example returns all databases on server, "server1". - - - - - - - - - - - - - - -------------------------- Code Example 2 -------------------------- + -------------------------- Code Example -------------------------- PS C:\> - PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" + PS C:\>Get-AzureSqlDatabaseAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - This example returns database named "database1", from server "server1". + Code Example Description @@ -556,15 +567,11 @@ Switch-AzureMode –Name AzureResourceManager - New-AzureSqlDatabase - - - - Remove-AzureSqlDatabase + Remove-AzureSqlDatabaseAuditing - Set-AzureSqlDatabase + Set-AzureSqlDatabaseAuditingPolicy @@ -572,62 +579,51 @@ Switch-AzureMode –Name AzureResourceManager - Get-AzureSqlDatabaseActivity + Get-AzureSqlDatabaseDataMaskingPolicy - + Gets an Azure SQL Database's data masking policy. Get - AzureSqlDatabaseActivity + AzureSqlDatabaseDataMaskingPolicy - + The Get-AzureSqlDatabaseDataMaskingPolicy cmdlet gets the data masking policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. - Get-AzureSqlDatabaseActivity + Get-AzureSqlDatabaseDataMaskingPolicy ServerName - - - String - - - ElasticPoolName - - + The name of the server containing the database. String - + DatabaseName - + The name of the database. String - - OperationId - - - - Nullable`1[Guid] - ResourceGroupName - + The name of the resource group containing the database. String Profile - + In-memory profile. AzureProfile @@ -637,99 +633,75 @@ Switch-AzureMode –Name AzureResourceManager ServerName - - - String - - String - - - - - - ElasticPoolName - - + The name of the server containing the database. String String - + none - + DatabaseName - + The name of the database. String String - - - - OperationId - - - - Nullable`1[Guid] - - Nullable`1[Guid] - - - + none ResourceGroupName - + The name of the resource group containing the database. String String - + none Profile - + In-memory profile. AzureProfile AzureProfile - + none - + InputType - +None - + OutputType - +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel @@ -738,41 +710,92 @@ Switch-AzureMode –Name AzureResourceManager - + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlDatabaseDataMaskingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlDatabaseDataMaskingRule + + + + New-AzureSqlDatabaseDataMaskingRule + + + + Remove-AzureSqlDatabaseDataMaskingRule + + + + Set-AzureSqlDatabaseDataMaskingPolicy + + + + Set-AzureSqlDatabaseDataMaskingRule + + - Get-AzureSqlDatabaseAuditingPolicy + Get-AzureSqlDatabaseDataMaskingRule - Gets an Azure SQL Database's auditing policy. + Gets an Azure SQL Database's data masking rule. Get - AzureSqlDatabaseAuditingPolicy + AzureSqlDatabaseDataMaskingRule - The Get-AzureSqlDatabaseAuditingPolicy cmdlet gets the auditing policy of an Azure Sql database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. + The Get-AzureSqlDatabaseDataMaskingRule cmdlet gets either a specific data masking rule, or all of the data masking rule of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database, and the RuleId to specify which rule this cmdlet returns. If no RuleId is provided, then all the data masking rules of that Azure SQL Database are returned. Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - Get-AzureSqlDatabaseAuditingPolicy + Get-AzureSqlDatabaseDataMaskingRule + + RuleId + + The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed. + + String + ServerName - The name of the server that contains the database. + The name of the server containing the database. String @@ -786,24 +809,36 @@ Switch-AzureMode –Name AzureResourceManager ResourceGroupName - The name of the resource group that contains the database. + The name of the resource group containing the database. String Profile - In-Memory profile. + In-memory profile AzureProfile + + RuleId + + The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed. + + String + + String + + + none + ServerName - The name of the server that contains the database. + The name of the server containing the database. String @@ -827,7 +862,7 @@ Switch-AzureMode –Name AzureResourceManager ResourceGroupName - The name of the resource group that contains the database. + The name of the resource group containing the database. String @@ -839,7 +874,7 @@ Switch-AzureMode –Name AzureResourceManager Profile - In-Memory profile. + In-memory profile AzureProfile @@ -857,7 +892,8 @@ Switch-AzureMode –Name AzureResourceManager - None + +None @@ -869,7 +905,8 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel + +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel @@ -878,7 +915,7 @@ Switch-AzureMode –Name AzureResourceManager - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. @@ -887,9 +924,9 @@ Switch-AzureMode –Name AzureResourceManager PS C:\> - PS C:\>Get-AzureSqlDatabaseAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" + PS C:\>Get-AzureSqlDatabaseDataMaskingRule –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - Code Example Description + This example returns all data masking rules for "database1". @@ -909,11 +946,23 @@ Switch-AzureMode –Name AzureResourceManager - Remove-AzureSqlDatabaseAuditing + Get-AzureSqlDatabaseDataMaskingPolicy - Set-AzureSqlDatabaseAuditingPolicy + New-AzureSqlDatabaseDataMaskingRule + + + + Remove-AzureSqlDatabaseDataMaskingRule + + + + Set-AzureSqlDatabaseDataMaskingPolicy + + + + Set-AzureSqlDatabaseDataMaskingRule @@ -921,51 +970,48 @@ Switch-AzureMode –Name AzureResourceManager - Get-AzureSqlDatabaseDataMaskingPolicy + Get-AzureSqlDatabaseExpanded - Gets an Azure SQL Database's data masking policy. + Get - AzureSqlDatabaseDataMaskingPolicy + AzureSqlDatabaseExpanded - The Get-AzureSqlDatabaseDataMaskingPolicy cmdlet gets the data masking policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. + - Get-AzureSqlDatabaseDataMaskingPolicy + Get-AzureSqlDatabaseExpanded ServerName - The name of the server containing the database. + String - + DatabaseName - The name of the database. + String ResourceGroupName - The name of the resource group containing the database. + String Profile - In-memory profile. + AzureProfile @@ -975,73 +1021,73 @@ Switch-AzureMode –Name AzureResourceManager ServerName - The name of the server containing the database. + String String - none + - + DatabaseName - The name of the database. + String String - none + ResourceGroupName - The name of the resource group containing the database. + String String - none + Profile - In-memory profile. + AzureProfile AzureProfile - none + - InputType + - None + - OutputType + - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel + @@ -1050,201 +1096,173 @@ Switch-AzureMode –Name AzureResourceManager - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabaseDataMaskingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlDatabaseDataMaskingRule - - - - New-AzureSqlDatabaseDataMaskingRule - - - - Remove-AzureSqlDatabaseDataMaskingRule - - - - Set-AzureSqlDatabaseDataMaskingPolicy - - - - Set-AzureSqlDatabaseDataMaskingRule - - - Get-AzureSqlDatabaseDataMaskingRule + Get-AzureSqlDatabaseIndexRecommendations - Gets an Azure SQL Database's data masking rule. + Get - AzureSqlDatabaseDataMaskingRule + AzureSqlDatabaseIndexRecommendations - The Get-AzureSqlDatabaseDataMaskingRule cmdlet gets either a specific data masking rule, or all of the data masking rule of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database, and the RuleId to specify which rule this cmdlet returns. If no RuleId is provided, then all the data masking rules of that Azure SQL Database are returned. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. + - Get-AzureSqlDatabaseDataMaskingRule + Get-AzureSqlDatabaseIndexRecommendations + + ServerName + + + + String + - RuleId + DatabaseName - The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed. + String - - ServerName + + TableName - The name of the server containing the database. + String - - DatabaseName + + IndexRecommendationName - The name of the database. + String ResourceGroupName - The name of the resource group containing the database. + String Profile - In-memory profile + AzureProfile + + ServerName + + + + String + + String + + + + - RuleId + DatabaseName - The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed. + String String - none + - - ServerName + + TableName - The name of the server containing the database. + String String - none + - - DatabaseName + + IndexRecommendationName - The name of the database. + String String - none + ResourceGroupName - The name of the resource group containing the database. + String String - none + Profile - In-memory profile + AzureProfile AzureProfile - none + - InputType + - None + - OutputType + - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel + @@ -1253,159 +1271,191 @@ Switch-AzureMode –Name AzureResourceManager - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabaseDataMaskingRule –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - - This example returns all data masking rules for "database1". - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlDatabaseDataMaskingPolicy - - - - New-AzureSqlDatabaseDataMaskingRule - - - - Remove-AzureSqlDatabaseDataMaskingRule - - - - Set-AzureSqlDatabaseDataMaskingPolicy - - - - Set-AzureSqlDatabaseDataMaskingRule - - - Get-AzureSqlDatabaseSecureConnectionPolicy + Get-AzureSqlDatabaseReplicationLink - Returns the secure connection policy of an Azure SQL Database. + Gets the geo-replication links between an Azure SQL Database and the specified Azure Resource Group or Azure SQL Server. Get - AzureSqlDatabaseSecureConnectionPolicy + AzureSqlDatabaseReplicationLink - The Get-AzureSqlDatabaseSecureConnectionPolicy cmdlet returns the secure connection policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet it returns an object describing the current secure connection policy as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) + This cmdlet replaces the Get-AzureSqlDatabaseCopy cmdlet. It will return all geo-replication links between the specified Azure Resource Group or Azure SQL Server. Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - Get-AzureSqlDatabaseSecureConnectionPolicy + Get-AzureSqlDatabaseReplicationLink + + DatabaseName + + The name of the Azure SQL Database to retrieve links for. + + String + + + PartnerResourceGroupName + + The name of the Azure Resource Group for the partner. + + String + ServerName - The name of server containing the database. + The name of the Azure SQL Server for the database to retrieve links for. + + String + + + ResourceGroupName + + The name of the Azure Resource Group for the database to retrieve links for. String + + Profile + + + + AzureProfile + + + + Get-AzureSqlDatabaseReplicationLink DatabaseName - The name of the database. + The name of the Azure SQL Database to retrieve links for. + + String + + + PartnerResourceGroupName + + The name of the Azure Resource Group for the partner. + + String + + + PartnerServerName + + The name of the Azure SQL Server for the partner. + + String + + + ServerName + + The name of the Azure SQL Server for the database to retrieve links for. String ResourceGroupName - The name of the resource group containing the database. + The name of the Azure Resource Group for the database to retrieve links for. String Profile - In-memory profile + AzureProfile - - ServerName + + DatabaseName - The name of server containing the database. + The name of the Azure SQL Database to retrieve links for. String String - none + - - DatabaseName + + PartnerResourceGroupName - The name of the database. + The name of the Azure Resource Group for the partner. String String - none + + + + ServerName + + The name of the Azure SQL Server for the database to retrieve links for. + + String + + String + + + ResourceGroupName - The name of the resource group containing the database. + The name of the Azure Resource Group for the database to retrieve links for. String String - none + Profile - In-memory profile + AzureProfile AzureProfile - none + + + + PartnerServerName + + The name of the Azure SQL Server for the partner. + + String + + String + + + @@ -1416,7 +1466,7 @@ Switch-AzureMode –Name AzureResourceManager - None + System.String @@ -1428,7 +1478,7 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel + System.Object @@ -1441,139 +1491,131 @@ Switch-AzureMode –Name AzureResourceManager - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabaseSecureConnectionPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - - Code Example Description - - - - - - - - - - - - - - Azure_SqlDatabase - - - Get-AzureSqlServerAuditingPolicy + Get-AzureSqlDatabaseRestorePoints - Gets an Azure SQL Server's auditing policy. + Get - AzureSqlServerAuditingPolicy + AzureSqlDatabaseRestorePoints - The Get-AzureSqlServerAuditingPolicy cmdlet gets the auditing policy of an Azure SQL Server. To use the cmdlet, use the ResourceGroupName and the ServerName parameters to identify the database server. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. + - Get-AzureSqlServerAuditingPolicy - + Get-AzureSqlDatabaseRestorePoints + ServerName - The name of the server containing the database. + + + String + + + DatabaseName + + String ResourceGroupName - The name of the resource group containing the database. + String Profile - In-memory profile + AzureProfile - + ServerName - The name of the server containing the database. + String String - none + + + + DatabaseName + + + + String + + String + + + ResourceGroupName - The name of the resource group containing the database. + String String - none + Profile - In-memory profile + AzureProfile AzureProfile - none + - InputType + - None + - OutputType + - Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel + @@ -1582,103 +1624,62 @@ Switch-AzureMode –Name AzureResourceManager - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlServerAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" - - The following example returns the auditing policy for "server1". - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlDatabaseAuditingPolicy - - - - Remove-AzureSqlDatabaseAuditing - - - - Remove-AzureSqlServerAuditing - - - - Set-AzureSqlDatabaseAuditingPolicy - - - - Set-AzureSqlServerAuditingPolicy - - - - Use-AzureSqlServerAuditingPolicy - - - Get-AzureSqlServerActiveDirectoryAdministrator + Get-AzureSqlDatabaseSecureConnectionPolicy - Returns information about an Azure Active Directory administrator for Azure SQL Server in the current subscription. + Returns the secure connection policy of an Azure SQL Database. Get - AzureSqlServerActiveDirectoryAdministrator + AzureSqlDatabaseSecureConnectionPolicy - The Get-AzureSqlServerActiveDirectoryAdministrator cmdlet returns information about an Azure Active Directory administrator for Azure SQL Server in the current subscription. + The Get-AzureSqlDatabaseSecureConnectionPolicy cmdlet returns the secure connection policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet it returns an object describing the current secure connection policy as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - Get-AzureSqlServerActiveDirectoryAdministrator + Get-AzureSqlDatabaseSecureConnectionPolicy ServerName - The name of the Azure SQL Server containing the Azure Active Directory administrator. + The name of server containing the database. + + String + + + DatabaseName + + The name of the database. String ResourceGroupName - The name of the resource group containing the Azure SQL Server. + The name of the resource group containing the database. String Profile - In-memory profile. + In-memory profile AzureProfile @@ -1688,7 +1689,19 @@ Switch-AzureMode –Name AzureResourceManager ServerName - The name of the Azure SQL Server containing the Azure Active Directory administrator. + The name of server containing the database. + + String + + String + + + none + + + DatabaseName + + The name of the database. String @@ -1700,7 +1713,7 @@ Switch-AzureMode –Name AzureResourceManager ResourceGroupName - The name of the resource group containing the Azure SQL Server. + The name of the resource group containing the database. String @@ -1712,7 +1725,7 @@ Switch-AzureMode –Name AzureResourceManager Profile - In-memory profile. + In-memory profile AzureProfile @@ -1731,7 +1744,7 @@ Switch-AzureMode –Name AzureResourceManager -System.String +None @@ -1744,7 +1757,7 @@ System.String -System.Object +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel @@ -1758,19 +1771,16 @@ System.Object - -------------------------- Code Example 1 -------------------------- + -------------------------- Code Example -------------------------- PS C:\> - PS C:\>Get-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" + PS C:\>Get-AzureSqlDatabaseSecureConnectionPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" - Returns information about an Azure Active Directory administrator for Azure SQL Database Server "aad_managed_demo" associated with resource group "Group-23" + Code Example Description - -ResourceGroupName ServerName DisplayName ObjectId ------------------ ---------- ----------- -------- -Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b + @@ -1783,11 +1793,7 @@ Group-23 aad-managed-demo DBAs - Remove-AzureSqlServerActiveDirectoryAdministrator - - - - Set-AzureSqlServerActiveDirectoryAdministrator + Azure_SqlDatabase @@ -1916,8 +1922,7 @@ Switch-AzureMode –Name AzureResourceManager - -Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel + Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel @@ -2087,8 +2092,7 @@ Switch-AzureMode –Name AzureResourceManager - -Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel + Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel @@ -2139,128 +2143,143 @@ PercentComplete : 3.662109 - Get-AzureSqlElasticPool + Get-AzureSqlDatabaseUpgradeHint - Gets the details for an Azure SQL elastic database pool. + Get - AzureSqlElasticPool + AzureSqlDatabaseUpgradeHint - Gets all elastic pools and their property values, or pass the name of an existing elastic pool and return only the property values for that pool. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. + - Get-AzureSqlElasticPool - - ElasticPoolName + Get-AzureSqlDatabaseUpgradeHint + + ServerName - The name of the Azure SQL elastic pool to retrieve. + String - - ServerName + + DatabaseName - The name of the Azure SQL Server containing the elastic pool. + String + + ExcludeElasticPoolCandidates + + + + Boolean + ResourceGroupName - The name of the resource group of the server containing the elastic pool. + String Profile - In-memory profile + AzureProfile - - ElasticPoolName + + ServerName - The name of the Azure SQL elastic pool to retrieve. + String String - none + - - ServerName + + DatabaseName - The name of the Azure SQL Server containing the elastic pool. + String String - none + + + + ExcludeElasticPoolCandidates + + + + Boolean + + Boolean + + + ResourceGroupName - The name of the resource group of the server containing the elastic pool. + String String - none + Profile - In-memory profile + AzureProfile AzureProfile - none + - InputType + - System.String + - OutputType + - System.Object + @@ -2269,14 +2288,157 @@ Switch-AzureMode –Name AzureResourceManager - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + - - -------------------------- Example 1 -------------------------- - - PS C:\> + + + + + + + + Get-AzureSqlElasticPool + + Gets the details for an Azure SQL elastic database pool. + + + + + Get + AzureSqlElasticPool + + + + Gets all elastic pools and their property values, or pass the name of an existing elastic pool and return only the property values for that pool. + +Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. + + + + Get-AzureSqlElasticPool + + ElasticPoolName + + The name of the Azure SQL elastic pool to retrieve. + + String + + + ServerName + + The name of the Azure SQL Server containing the elastic pool. + + String + + + ResourceGroupName + + The name of the resource group of the server containing the elastic pool. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + ElasticPoolName + + The name of the Azure SQL elastic pool to retrieve. + + String + + String + + + none + + + ServerName + + The name of the Azure SQL Server containing the elastic pool. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group of the server containing the elastic pool. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + +System.String + + + + + + + OutputType + + + + + +System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example 1 -------------------------- + + PS C:\> PS C:\>Get-AzureSqlElasticPool –ResourceGroupName "resourcegroup1" –ServerName "server1" @@ -2445,7 +2607,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -2457,7 +2620,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -2653,7 +2817,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -2665,7 +2830,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -2750,13 +2916,6 @@ Switch-AzureMode –Name AzureResourceManager Get-AzureSqlElasticPoolRecommendation - - ElasticPoolRecommendation - - - - String - ServerName @@ -2781,18 +2940,6 @@ Switch-AzureMode –Name AzureResourceManager - - ElasticPoolRecommendation - - - - String - - String - - - - ServerName @@ -2829,6 +2976,18 @@ Switch-AzureMode –Name AzureResourceManager + + ElasticPoolRecommendation + + + + string + + string + + + + @@ -2872,145 +3031,110 @@ Switch-AzureMode –Name AzureResourceManager - Get-AzureSqlElasticPoolRecommendationDatabase + Get-AzureSqlServer - + Returns information about one or more Azure SQL Database Servers. Get - AzureSqlElasticPoolRecommendationDatabase + AzureSqlServer - + If a SQL Database Server name is specified in the ServerName parameter, the cmdlet returns information about the specific SQL Database Server. Otherwise, it returns information about all the SQL Database Servers. + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. - Get-AzureSqlElasticPoolRecommendationDatabase - - ElasticPoolRecommendation - - - - String - - - DatabaseName - - - - String - - + Get-AzureSqlServer + ServerName - + The name of the Azure SQL Server to retrieve. String ResourceGroupName - + The name of the resource group containing the Azure SQL Server. String Profile - + In-memory profile. AzureProfile - - ElasticPoolRecommendation - - - - String - - String - - - - - - DatabaseName - - - - String - - String - - - - - + ServerName - + The name of the Azure SQL Server to retrieve. String String - + none ResourceGroupName - + The name of the resource group containing the Azure SQL Server. String String - + none Profile - + In-memory profile. AzureProfile AzureProfile - + none - + InputType - +System.String - + OutputType - +System.Object @@ -3019,137 +3143,144 @@ Switch-AzureMode –Name AzureResourceManager - + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-AzureSqlServer –ResourceGroupName "resourcegroup1" –ServerName "server1" + + Use this cmdlet to retrieve an Azure SQL Database Server named "server1". + + + + + + + + + + + + + + Azure_SqlDatabase + + - Get-AzureSqlElasticPoolRecommendationMetrics + Get-AzureSqlServerActiveDirectoryAdministrator - + The Get-AzureSqlServerActiveDirectoryAdministrator cmdlet returns information about an Azure Active Directory administrator for an Azure SQL Server in the current subscription. Get - AzureSqlElasticPoolRecommendationMetrics + AzureSqlServerActiveDirectoryAdministrator - + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. - Get-AzureSqlElasticPoolRecommendationMetrics - - ElasticPoolRecommendation - - - - String - + Get-AzureSqlServerActiveDirectoryAdministrator ServerName - + The name of the Azure SQL Server containing the Azure Active Directory administrator. String ResourceGroupName - + The name of the resource group containing the Azure SQL Server. String Profile - + In-memory profile. AzureProfile - - ElasticPoolRecommendation - - - - String - - String - - - - ServerName - + The name of the Azure SQL Server containing the Azure Active Directory administrator. String String - + none ResourceGroupName - + The name of the resource group containing the Azure SQL Server. String String - + none Profile - + In-memory profile. AzureProfile AzureProfile - + none - + InputType - +System.String - + OutputType - +System.Object @@ -3158,7 +3289,7 @@ Switch-AzureMode –Name AzureResourceManager - + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. @@ -3169,54 +3300,54 @@ Switch-AzureMode –Name AzureResourceManager - Get-AzureSqlServer + Get-AzureSqlServerAuditingPolicy - Returns information about one or more Azure SQL Database Servers. + Gets an Azure SQL Server's auditing policy. Get - AzureSqlServer + AzureSqlServerAuditingPolicy - If a SQL Database Server name is specified in the ServerName parameter, the cmdlet returns information about the specific SQL Database Server. Otherwise, it returns information about all the SQL Database Servers. + The Get-AzureSqlServerAuditingPolicy cmdlet gets the auditing policy of an Azure SQL Server. To use the cmdlet, use the ResourceGroupName and the ServerName parameters to identify the database server. Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - Get-AzureSqlServer - + Get-AzureSqlServerAuditingPolicy + ServerName - The name of the Azure SQL Server to retrieve. + The name of the server containing the database. String ResourceGroupName - The name of the resource group containing the Azure SQL Server. + The name of the resource group containing the database. String Profile - In-memory profile. + In-memory profile AzureProfile - + ServerName - The name of the Azure SQL Server to retrieve. + The name of the server containing the database. String @@ -3228,7 +3359,7 @@ Switch-AzureMode –Name AzureResourceManager ResourceGroupName - The name of the resource group containing the Azure SQL Server. + The name of the resource group containing the database. String @@ -3240,7 +3371,7 @@ Switch-AzureMode –Name AzureResourceManager Profile - In-memory profile. + In-memory profile AzureProfile @@ -3258,7 +3389,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +None @@ -3270,7 +3402,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel @@ -3288,9 +3421,9 @@ Switch-AzureMode –Name AzureResourceManager PS C:\> - PS C:\>Get-AzureSqlServer –ResourceGroupName "resourcegroup1" –ServerName "server1" + PS C:\>Get-AzureSqlServerAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" - Use this cmdlet to retrieve an Azure SQL Database Server named "server1". + The following example returns the auditing policy for "server1". @@ -3309,6 +3442,30 @@ Switch-AzureMode –Name AzureResourceManager Azure_SqlDatabase + + Get-AzureSqlDatabaseAuditingPolicy + + + + Remove-AzureSqlDatabaseAuditing + + + + Remove-AzureSqlServerAuditing + + + + Set-AzureSqlDatabaseAuditingPolicy + + + + Set-AzureSqlServerAuditingPolicy + + + + Use-AzureSqlServerAuditingPolicy + + @@ -3422,7 +3579,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -3434,7 +3592,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -3605,7 +3764,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -3617,7 +3777,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -3663,7 +3824,7 @@ Switch-AzureMode –Name AzureResourceManager Get-AzureSqlServerUpgrade - + Gets the status of an Azure SQL Server Upgrade. @@ -3673,7 +3834,10 @@ Switch-AzureMode –Name AzureResourceManager - + The Get-AzureSqlServerUpgrade cmdlet returns the status of an Azure SQL Server Upgrade. + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. @@ -3681,21 +3845,21 @@ Switch-AzureMode –Name AzureResourceManager ServerName - + The name of the Azure SQL Server to get upgrade status. String ResourceGroupName - + The name of the resource group containing the Azure SQL Server. String Profile - + In-memory profile. AzureProfile @@ -3705,7 +3869,7 @@ Switch-AzureMode –Name AzureResourceManager ServerName - + The name of the Azure SQL Server to get upgrade status. String @@ -3717,7 +3881,7 @@ Switch-AzureMode –Name AzureResourceManager ResourceGroupName - + The name of the resource group containing the Azure SQL Server. String @@ -3729,7 +3893,7 @@ Switch-AzureMode –Name AzureResourceManager Profile - + In-memory profile. AzureProfile @@ -3742,20 +3906,20 @@ Switch-AzureMode –Name AzureResourceManager - + InputType - +System.String - + OutputType @@ -3770,76 +3934,245 @@ Switch-AzureMode –Name AzureResourceManager - + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + -------------------------- Example 1: Get status of a server upgrade -------------------------- + + PS C:\> + + Get-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer | Format-List + + Get the status of an upgrade request from server "MySqlServer" in resource group "MyResourceGroup". + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Start-AzureSqlServerUpgrade + + + + Stop-AzureSqlServerUpgrade + + - New-AzureSqlDatabase + Get-AzureSqlServerUpgradeHint - Creates a new Azure SQL Database, or new elastic database. + - New - AzureSqlDatabase + Get + AzureSqlServerUpgradeHint - The New-AzureSqlDatabase cmdlet creates a new Azure SQL Database. -Create an elastic database by setting the ElasticPoolName to an existing elastic pool. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. + - New-AzureSqlDatabase - - DatabaseName + Get-AzureSqlServerUpgradeHint + + ServerName - The name of the Azure SQL Database to create. + String - - CollationName + + ExcludeElasticPools - The name of the Azure SQL Database collation to use. + - String + Boolean - - CatalogCollation + + ResourceGroupName - The name of the Azure SQL Database catalog collation to use. + String - MaxSizeBytes - - The maximum size of the Azure SQL Database in bytes. - - Int64 - - - Edition + Profile - The edition to assign to the Azure SQL Database. + - DatabaseEdition + AzureProfile - - RequestedServiceObjectiveName - + + + + + ServerName + + + + String + + String + + + + + + ExcludeElasticPools + + + + Boolean + + Boolean + + + + + + ResourceGroupName + + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + New-AzureSqlDatabase + + Creates a new Azure SQL Database, or new elastic database. + + + + + New + AzureSqlDatabase + + + + The New-AzureSqlDatabase cmdlet creates a new Azure SQL Database. +Create an elastic database by setting the ElasticPoolName to an existing elastic pool. + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. + + + + New-AzureSqlDatabase + + DatabaseName + + The name of the Azure SQL Database to create. + + String + + + CollationName + + The name of the Azure SQL Database collation to use. + + String + + + CatalogCollation + + The name of the Azure SQL Database catalog collation to use. + + String + + + MaxSizeBytes + + The maximum size of the Azure SQL Database in bytes. + + Int64 + + + Edition + + The edition to assign to the Azure SQL Database. + + DatabaseEdition + + + RequestedServiceObjectiveName + The name of the service objective to assign to the Azure SQL Database. String @@ -4023,7 +4356,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -4035,7 +4369,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -4107,160 +4442,328 @@ Switch-AzureMode –Name AzureResourceManager - New-AzureSqlDatabaseDataMaskingRule + New-AzureSqlDatabaseCopy - Creates a new Azure SQL Database's data masking rule. + Creates a copy of an existing Azure SQL Database using the snapshot of the data at the time of the call. New - AzureSqlDatabaseDataMaskingRule + AzureSqlDatabaseCopy - The Set-SetAzureSqlDatabaseDataMaskingRule cmdlet is used to set the properties of an already exisiting data masking rule of an Azure SQL database. To use the cmdlet, use the ResourceGroupName, ServerName, DatabaseName and Rule parameters to identify the rule. Use either the TableName and ColumnName or the AliasName to specify thetarget of the rule and the MaskingFunction parameter to define how the data is masked. If the command succeeds and the PassThru switch is on, it returns an object describing the data masking rule as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName) + This cmdlet replaces the Start-AzureSqlDatabaseCopy cmdlet when used to create a one-time database copy. It returns the database object of the copy. + Note: Use New-AzureSqlDatabaseSecondary for setting up geo-replication for a database. Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - New-AzureSqlDatabaseDataMaskingRule - - MaskingFunction + New-AzureSqlDatabaseCopy + + DatabaseName - Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. + The name of the Azure SQL Database to be copied. String - - TableName + + ServiceObjectiveName - The name of the table in the database to apply the rule. + The name of the service objective to assign to the copy. String - - ColumnName + + ElasticPoolName - The name of the column that is the target of this masking rule. + The name of the Elastic Pool to put the copy in. String - - PrefixSize + + Tags - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. + The tags to associate with the Azure SQL Database copy. - Nullable`1[UInt32] + Dictionary`2[String] - - ReplacementString + + CopyResourceGroupName - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + The name of the Azure Resource Group to create copy in. String - - SuffixSize - - When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - - NumberFrom - - When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. - - Nullable`1[Double] - - - NumberTo - - When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. - - Nullable`1[Double] - - PassThru + CopyServerName - Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + The name of the Azure SQL Server to create copy in. - SwitchParameter + String - - RuleId + + CopyDatabaseName - The identifier for this data masking rule. + The name of the Azure SQL Database copy. String ServerName - The name of the server containing the database. - - String - - - DatabaseName - - The name of the database. + The name of the Azure SQL Server the database to be copied is in. String ResourceGroupName - The name of the resource group containing the database. + The name of the Azure Resource Group the database to be copied is in. String Profile - In-memory profile + AzureProfile - - New-AzureSqlDatabaseDataMaskingRule - - MaskingFunction - - Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. - - String - - - AliasName - - The name of the alias that is the target of this masking rule. - - String - - - PrefixSize - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - - ReplacementString - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - String - - - SuffixSize - - When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - + + + + DatabaseName + + The name of the Azure SQL Database to be copied. + + String + + String + + + + + + ServiceObjectiveName + + The name of the service objective to assign to the copy. + + String + + String + + + + + + ElasticPoolName + + The name of the Elastic Pool to put the copy in. + + String + + String + + + + + + Tags + + The tags to associate with the Azure SQL Database copy. + + Dictionary`2[String] + + Dictionary`2[String] + + + + + + CopyResourceGroupName + + The name of the Azure Resource Group to create copy in. + + String + + String + + + + + + CopyServerName + + The name of the Azure SQL Server to create copy in. + + String + + String + + + + + + CopyDatabaseName + + The name of the Azure SQL Database copy. + + String + + String + + + + + + ServerName + + The name of the Azure SQL Server the database to be copied is in. + + String + + String + + + + + + ResourceGroupName + + The name of the Azure Resource Group the database to be copied is in. + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + + + + + + + New-AzureSqlDatabaseDataMaskingRule + + Creates a new Azure SQL Database's data masking rule. + + + + + New + AzureSqlDatabaseDataMaskingRule + + + + The Set-SetAzureSqlDatabaseDataMaskingRule cmdlet is used to set the properties of an already exisiting data masking rule of an Azure SQL database. To use the cmdlet, use the ResourceGroupName, ServerName, DatabaseName and Rule parameters to identify the rule. Use either the TableName and ColumnName or the AliasName to specify thetarget of the rule and the MaskingFunction parameter to define how the data is masked. If the command succeeds and the PassThru switch is on, it returns an object describing the data masking rule as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName) + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. + + + + New-AzureSqlDatabaseDataMaskingRule + + ColumnName + + The name of the column that is the target of this masking rule. + + String + + + SchemaName + + + + String + + + TableName + + The name of the table in the database to apply the rule. + + String + + + MaskingFunction + + Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. + + String + + + PrefixSize + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. + + Nullable`1[UInt32] + + + ReplacementString + + When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + + String + + + SuffixSize + + When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. + Nullable`1[UInt32] @@ -4323,9 +4826,9 @@ Switch-AzureMode –Name AzureResourceManager - MaskingFunction + ColumnName - Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. + The name of the column that is the target of this masking rule. String @@ -4334,6 +4837,18 @@ Switch-AzureMode –Name AzureResourceManager none + + SchemaName + + + + String + + String + + + + TableName @@ -4347,9 +4862,9 @@ Switch-AzureMode –Name AzureResourceManager none - ColumnName + MaskingFunction - The name of the column that is the target of this masking rule. + Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. String @@ -4490,14 +5005,14 @@ Switch-AzureMode –Name AzureResourceManager none - + AliasName The name of the alias that is the target of this masking rule. - String + string - String + string none @@ -4511,7 +5026,8 @@ Switch-AzureMode –Name AzureResourceManager - None + +None @@ -4523,7 +5039,8 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel + +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel @@ -4567,38 +5084,292 @@ Switch-AzureMode –Name AzureResourceManager - New-AzureSqlElasticPool + New-AzureSqlDatabaseSecondary - Creates a new Azure SQL Database elastic database pool. + Creates a new secondary database for an existing Azure SQL Database and starts data replication. New - AzureSqlElasticPool + AzureSqlDatabaseSecondary - This cmdlet creates a new elastic database pool. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + This cmdlet replaces the Start-AzureSqlDatabaseCopy cmdlet when used for setting up geo-replication for a database. It returns the geo-replication link object from the primary to the secondary database. + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - New-AzureSqlElasticPool - - ElasticPoolName + New-AzureSqlDatabaseSecondary + + DatabaseName - The name of the Azure SQL elastic pool to create. + The name of the Azure SQL Database to act as primary. String - Edition + SecondaryServiceObjectiveName - The edition to assign to the Azure SQL elastic pool. + The name of the service objective to assign to the secondary. + + String + + + SecondaryElasticPoolName + + The name of the Elastic Pool to put the secondary in. + + String + + + Tags + + The tags to associate with the Azure SQL Database replication link. + + Dictionary`2[String] + + + PartnerResourceGroupName + + The name of the Azure Resource Group to create secondary in. + + String + + + PartnerServerName + + The name of the Azure SQL Server to create secondary in. + + String + + + AllowConnections + + The read intent of the secondary Azure SQL Database. + + AllowConnections + + + ServerName + + The name of the Azure SQL Server of the primary Azure SQL Database. + + String + + + ResourceGroupName + + The name of the Azure Resource Group of the primary Azure SQL Database. + + String + + + Profile + + + + AzureProfile + + + + + + DatabaseName + + The name of the Azure SQL Database to act as primary. + + String + + String + + + + + + SecondaryServiceObjectiveName + + The name of the service objective to assign to the secondary. + + String + + String + + + + + + SecondaryElasticPoolName + + The name of the Elastic Pool to put the secondary in. + + String + + String + + + + + + Tags + + The tags to associate with the Azure SQL Database replication link. + + Dictionary`2[String] + + Dictionary`2[String] + + + + + + PartnerResourceGroupName + + The name of the Azure Resource Group to create secondary in. + + String + + String + + + + + + PartnerServerName + + The name of the Azure SQL Server to create secondary in. + + String + + String + + + + + + AllowConnections + + The read intent of the secondary Azure SQL Database. + + AllowConnections + + AllowConnections + + + + + + ServerName + + The name of the Azure SQL Server of the primary Azure SQL Database. + + String + + String + + + + + + ResourceGroupName + + The name of the Azure Resource Group of the primary Azure SQL Database. + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + System.String + + + + + + + OutputType + + + + + System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + + + + + + + New-AzureSqlElasticPool + + Creates a new Azure SQL Database elastic database pool. + + + + + New + AzureSqlElasticPool + + + + This cmdlet creates a new elastic database pool. + +Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. + + + + New-AzureSqlElasticPool + + ElasticPoolName + + The name of the Azure SQL elastic pool to create. + + String + + + Edition + + The edition to assign to the Azure SQL elastic pool. For the current preview, the edition must be "Standard". DatabaseEdition @@ -4792,7 +5563,8 @@ For the current preview, the edition must be "Standard". - System.String + +System.String @@ -4804,7 +5576,8 @@ For the current preview, the edition must be "Standard". - System.Object + +System.Object @@ -4901,9 +5674,9 @@ Switch-AzureMode –Name AzureResourceManager String - SqlAdminCredentials + SqlAdministratorCredentials - The SQL administrator credentials for the new server. + PSCredential @@ -4959,16 +5732,16 @@ Switch-AzureMode –Name AzureResourceManager none - SqlAdminCredentials + SqlAdministratorCredentials - The SQL administrator credentials for the new server. + PSCredential PSCredential - none + Location @@ -5031,6 +5804,18 @@ Switch-AzureMode –Name AzureResourceManager none + + SqlAdminCredentials + + The SQL administrator credentials for the new server. + + pscredential + + pscredential + + + none + @@ -5040,7 +5825,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -5052,7 +5838,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -5114,7 +5901,7 @@ Switch-AzureMode –Name AzureResourceManager New-AzureSqlServerFirewallRule - + Creates a new firewall rule for an Azure SQL Database server. @@ -5124,7 +5911,11 @@ Switch-AzureMode –Name AzureResourceManager - + The New-AzureSqlServerFirewallRule cmdlet creates a new firewall rule for the specified SQL Database server. + +Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. @@ -5132,42 +5923,42 @@ Switch-AzureMode –Name AzureResourceManager FirewallRuleName - + The name of the new firewall rule. String StartIpAddress - + Start value of the IP address range. String EndIpAddress - + End value of the IP address range. String ServerName - + The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name. String ResourceGroupName - + The name of the resource group that contains the Azure SQL Server this firewall rule will be created for. String Profile - + In-memory profile. AzureProfile @@ -5177,28 +5968,28 @@ Switch-AzureMode –Name AzureResourceManager AllowAllAzureIPs - + Allows other Azure services to connect to the server. This is a special firewall rule that allows all Azure IPs to access the server. SwitchParameter ServerName - + The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name. String ResourceGroupName - + The name of the resource group that contains the Azure SQL Server this firewall rule will be created for. String Profile - + In-memory profile. AzureProfile @@ -5208,111 +5999,111 @@ Switch-AzureMode –Name AzureResourceManager FirewallRuleName - + The name of the new firewall rule. String String - + none StartIpAddress - + Start value of the IP address range. String String - + none EndIpAddress - + End value of the IP address range. String String - + none ServerName - + The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name. String String - + none ResourceGroupName - + The name of the resource group that contains the Azure SQL Server this firewall rule will be created for. String String - + none Profile - + In-memory profile. AzureProfile AzureProfile - + none AllowAllAzureIPs - + Allows other Azure services to connect to the server. This is a special firewall rule that allows all Azure IPs to access the server. SwitchParameter SwitchParameter - + none - + InputType - +System.String - + OutputType - +System.Object @@ -5321,12 +6112,48 @@ Switch-AzureMode –Name AzureResourceManager - + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + -------------------------- Example -------------------------- + + PS C:\> + + PS C:\>New-AzureSqlServerFirewallRule -ResourceGroupName "resourcegroup1" -ServerName "server1" -FirewallRuleName "rule1" -StartIpAddress "192.168.0.198" -EndIpAddress "192.168.0.199" + + The following example creates a new firewall rule. + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlServerFirewallRule + + + + Remove-AzureSqlServerFirewallRule + + + + Set-AzureSqlServerFirewallRule + + @@ -5497,7 +6324,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -5509,7 +6337,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -5680,7 +6509,8 @@ Switch-AzureMode –Name AzureResourceManager - None + +None @@ -5692,7 +6522,8 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel + +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel @@ -5939,7 +6770,8 @@ Switch-AzureMode –Name AzureResourceManager - None + +None @@ -5951,7 +6783,8 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel + +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel @@ -5995,104 +6828,180 @@ Switch-AzureMode –Name AzureResourceManager - Remove-AzureSqlServerAuditing + Remove-AzureSqlDatabaseSecondary - Disables auditing of all the databases that rely on the auditing policy of the given database server. + Terminates data replication between an Azure SQL Database and the specified secondary database. Remove - AzureSqlDatabaseServerAuditing + AzureSqlDatabaseSecondary - The Remove-AzureSqlServerAuditing cmdlet disables auditing of all the databases that rely on the auditing policy of the given database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server. After the successful execution of the cmdlet, auditing of the database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database server identifiers (i.e. ResourceGroupName and ServerName) + This cmdlet replaces the Stop-AzureSqlDatabaseCopy cmdlet. It will force terminates the geo-replication link. There is no replication synchronization prior to termination. Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - Remove-AzureSqlServerAuditing - - PassThru + Remove-AzureSqlDatabaseSecondary + + DatabaseName - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + The name of the primary Azure SQL Database with the replication link to remove. - SwitchParameter + String + + + PartnerResourceGroupName + + The name of the partner Azure Resource Group. + + String + PartnerServerName + + The name of the partner Azure SQL Server. + + String + + ServerName - The name of the server. + The name of the Azure SQL Server with the replication link to remove. String ResourceGroupName - The name of the resource group containing the server. + The name of the Azure Resource Group with the replication link to remove. String Profile - In-memory profile + AzureProfile + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + - - PassThru + + DatabaseName - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + The name of the primary Azure SQL Database with the replication link to remove. - SwitchParameter + String - SwitchParameter + String - none + + + + PartnerResourceGroupName + + The name of the partner Azure Resource Group. + + String + + String + + + + PartnerServerName + + The name of the partner Azure SQL Server. + + String + + String + + + + + ServerName - The name of the server. + The name of the Azure SQL Server with the replication link to remove. String String - none + ResourceGroupName - The name of the resource group containing the server. + The name of the Azure Resource Group with the replication link to remove. String String - none + Profile - In-memory profile + AzureProfile AzureProfile - none + + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + @@ -6103,7 +7012,7 @@ Switch-AzureMode –Name AzureResourceManager - None + System.String @@ -6115,7 +7024,7 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel + System.Object @@ -6128,32 +7037,8 @@ Switch-AzureMode –Name AzureResourceManager - - -------------------------- Code Example -------------------------- - - PS C:\> - - PS C:\>Get-Help Remove-AzureSqlServerAuditing -Full - - Code Example Description - - - - - - - - - - - - - - Azure_SqlDatabase - - @@ -6325,7 +7210,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -6337,7 +7223,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -6551,7 +7438,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -6563,7 +7451,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -6780,24 +7669,159 @@ System.Object - - -------------------------- Code Example 1 -------------------------- - - PS C:\> - - PS c:\> Remove-AzureSqlServerActiveDirectoryAdministrator -ResourceGroupName "Group-23" –ServerName "aad-managed-demo" - - This command removes an Azure Active Directory administrator for Azure SQL Database Server "aad_managed_demo" associated with resource group "Group-23" - - - -Confirm -Are you sure you want to remove the Azure Sql Server Active Directory Administrator on server 'aadtest'? -[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): Y - -ResourceGroupName ServerName DisplayName ObjectId ------------------ ---------- ----------- -------- -Group-233 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b + + + + + + + + Remove-AzureSqlServerAuditing + + Disables auditing of all the databases that rely on the auditing policy of the given database server. + + + + + Remove + AzureSqlServerAuditing + + + + The Remove-AzureSqlServerAuditing cmdlet disables auditing of all the databases that rely on the auditing policy of the given database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server. After the successful execution of the cmdlet, auditing of the database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database server identifiers (i.e. ResourceGroupName and ServerName) + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. + + + + Remove-AzureSqlServerAuditing + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + ServerName + + The name of the server. + + String + + + ResourceGroupName + + The name of the resource group containing the server. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + ServerName + + The name of the server. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group containing the server. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + +None + + + + + + + OutputType + + + + + +Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help Remove-AzureSqlServerAuditing -Full + + Code Example Description + + + @@ -6810,11 +7834,7 @@ Group-233 aad-managed-demo DBA - Get-AzureSqlServerActiveDirectoryAdministrator - - - - Set-AzureSqlServerActiveDirectoryAdministrator + Azure_SqlDatabase @@ -6987,7 +8007,8 @@ Switch-AzureMode –Name AzureResourceManager - New InputType + +New InputType @@ -6999,7 +8020,8 @@ Switch-AzureMode –Name AzureResourceManager - New OutputType + +New OutputType @@ -7055,135 +8077,272 @@ Switch-AzureMode –Name AzureResourceManager - Set-AzureSqlDatabase + Resume-AzureSqlDatabase - Updates properties for an Azure SQL Database, or moves an existing database into an elastic pool. + - Set + Resume AzureSqlDatabase - The Set-AzureSqlDatabase cmdlet sets properties for an Azure SQL Database. -Set the ElasticPoolName parameter to move a database into an elastic pool. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. + - Set-AzureSqlDatabase - - DatabaseName - - The name of the Azure SQL Database to modify. - - String - - - MaxSizeBytes - - If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition. - - Int64 - - - Edition - - If specified, the new edition for the Azure SQL Database. - - DatabaseEdition - - - RequestedServiceObjectiveName - - The name of the service objective to assign to the Azure SQL Database. - - String - - - ElasticPoolName + Resume-AzureSqlDatabase + + ServerName - The name of the Azure SQL elastic pool to put the database in. + String - - Tags - - The tags to associate with the Azure SQL Database. - - Dictionary`2[String] - - - ServerName + + DatabaseName - Name of the Azure SQL Server that contains the Azure SQL Database. + String ResourceGroupName - Name of resource group of the Azure SQL Server that contains the Azure SQL Database. + String Profile - In-memory profile. + AzureProfile - - DatabaseName + + ServerName - The name of the Azure SQL Database to modify. + String String - none + - - MaxSizeBytes + + DatabaseName - If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition. + - Int64 + String - Int64 + String - none + - - Edition + + ResourceGroupName - If specified, the new edition for the Azure SQL Database. + - DatabaseEdition + String - DatabaseEdition + String - none + - RequestedServiceObjectiveName + Profile - The name of the service objective to assign to the Azure SQL Database. + - String + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Set-AzureSqlDatabase + + Updates properties for an Azure SQL Database, or moves an existing database into an elastic pool. + + + + + Set + AzureSqlDatabase + + + + The Set-AzureSqlDatabase cmdlet sets properties for an Azure SQL Database. +Set the ElasticPoolName parameter to move a database into an elastic pool. + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlDatabase + + DatabaseName + + The name of the Azure SQL Database to modify. + + String + + + MaxSizeBytes + + If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition. + + Int64 + + + Edition + + If specified, the new edition for the Azure SQL Database. + + DatabaseEdition + + + RequestedServiceObjectiveName + + The name of the service objective to assign to the Azure SQL Database. + + String + + + ElasticPoolName + + The name of the Azure SQL elastic pool to put the database in. + + String + + + Tags + + The tags to associate with the Azure SQL Database. + + Dictionary`2[String] + + + ServerName + + Name of the Azure SQL Server that contains the Azure SQL Database. + + String + + + ResourceGroupName + + Name of resource group of the Azure SQL Server that contains the Azure SQL Database. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + DatabaseName + + The name of the Azure SQL Database to modify. + + String + + String + + + none + + + MaxSizeBytes + + If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition. + + Int64 + + Int64 + + + none + + + Edition + + If specified, the new edition for the Azure SQL Database. + + DatabaseEdition + + DatabaseEdition + + + none + + + RequestedServiceObjectiveName + + The name of the service objective to assign to the Azure SQL Database. + + String String @@ -7259,7 +8418,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -7271,7 +8431,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -7559,7 +8720,8 @@ Switch-AzureMode –Name AzureResourceManager - None + +None @@ -7571,7 +8733,8 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel + +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel @@ -7656,13 +8819,6 @@ Switch-AzureMode –Name AzureResourceManager String - - MaskingLevel - - Specifies whether data masking operation is done in a standard or extended manner (defaults to 'Standard'). Valid values are: Standard, Extended. - - String - ServerName @@ -7730,18 +8886,6 @@ Switch-AzureMode –Name AzureResourceManager none - - MaskingLevel - - Specifies whether data masking operation is done in a standard or extended manner (defaults to 'Standard'). Valid values are: Standard, Extended. - - String - - String - - - none - ServerName @@ -7790,6 +8934,18 @@ Switch-AzureMode –Name AzureResourceManager none + + MaskingLevel + + Specifies whether data masking operation is done in a standard or extended manner (defaults to 'Standard'). Valid values are: Standard, Extended. + + string + + string + + + none + @@ -7799,7 +8955,8 @@ Switch-AzureMode –Name AzureResourceManager - None + +None @@ -7811,7 +8968,8 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel + +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel @@ -7876,117 +9034,30 @@ Switch-AzureMode –Name AzureResourceManager Set-AzureSqlDatabaseDataMaskingRule - MaskingFunction + ColumnName - Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. + The name of the column that is the target of this masking rule. String - + TableName The name of the table in the database that the masked column is part of. String - - ColumnName + + SchemaName - The name of the column that is the target of this masking rule. - - String - - - PrefixSize - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - - ReplacementString - - When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - String - - - SuffixSize - - When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0. - - Nullable`1[UInt32] - - - NumberFrom - - When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask. - - Nullable`1[Double] - - - NumberTo - - When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0. - - Nullable`1[Double] - - - PassThru - - Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - RuleId - - The identifier for the data masking rule. - - String - - - ServerName - - The name of the server containing the database. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group containing the database. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - Set-AzureSqlDatabaseDataMaskingRule - - MaskingFunction - - Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. - - String - - - AliasName - - The name of the alias that is the target of this masking rule. + + + String + + + MaskingFunction + + Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. String @@ -8071,9 +9142,9 @@ Switch-AzureMode –Name AzureResourceManager - MaskingFunction + ColumnName - Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. + The name of the column that is the target of this masking rule. String @@ -8082,7 +9153,7 @@ Switch-AzureMode –Name AzureResourceManager none - + TableName The name of the table in the database that the masked column is part of. @@ -8094,10 +9165,22 @@ Switch-AzureMode –Name AzureResourceManager none - - ColumnName + + SchemaName - The name of the column that is the target of this masking rule. + + + String + + String + + + + + + MaskingFunction + + Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email. String @@ -8238,14 +9321,14 @@ Switch-AzureMode –Name AzureResourceManager none - + AliasName The name of the alias that is the target of this masking rule. - String + string - String + string none @@ -8259,7 +9342,8 @@ Switch-AzureMode –Name AzureResourceManager - None + +None @@ -8271,7 +9355,8 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel + +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel @@ -8315,80 +9400,52 @@ Switch-AzureMode –Name AzureResourceManager - Set-AzureSqlServerAuditingPolicy + Set-AzureSqlDatabaseTransparentDataEncryption - Sets an Azure SQL Database server's auditing policy. + Updates properties for Transparent Data Encryption for an Azure SQL Database. Set - AzureSqlServerAuditingPolicy + AzureSqlDatabaseTransparentDataEncryption - The Set-AzureSqlServerAuditingPolicy cmdlet changes the auditing policy of an Azure SQL Database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server, the StorageAccountName parameter to specify the storage account to be used for the audit logs and the EventType parameter to define which event types to audit. The auditing policy of a database server apply to all the databases in this server that are marked as using the server's auditing policy, as well as all newly created databases.If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the server's identifiers (i.e. ResourceGroupName and ServerName). - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: + The Set-SetAzureSqlDatabaseTransparentDataEncryption cmdlet is used to set the Transparent Data Encryption (TDE) property of an already existing Azure SQL database. Use the ResourceGroupName, ServerName, and DatabaseName. Use "Enabled" or "Disabled" to specify the target state of TDE for an Azure SQL Database. If the command succeeds and the PassThru switch is on, it returns an object describing the TDE state as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName). + +Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - Set-AzureSqlServerAuditingPolicy - - PassThru - - Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - EventType - - Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None. - It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. - - String[] - - - StorageAccountName - - Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. - - String - - - StorageKeyType - - The type of storage key. Valid values are: Primary, Secondary. - - String - - - RetentionInDays + Set-AzureSqlDatabaseTransparentDataEncryption + + State - + The state to set Transparent Data Encryption to for the Azure SQL Database. - Nullable`1[UInt32] + TransparentDataEncryptionStateType - - TableIdentifier + + ServerName - + The name of the Azure SQL Database Server the database is in. String - - ServerName + + DatabaseName - The name of the server. + The name of the Azure SQL Database to retrieve. String ResourceGroupName - The name of the resource group that contains the server. + The name of the resource group of the server containing the database to retrieve. String @@ -8402,71 +9459,22 @@ Switch-AzureMode –Name AzureResourceManager - - PassThru - - Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output. - - SwitchParameter - - SwitchParameter - - - none - - - EventType - - Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None. - It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. - - String[] - - String[] - - - none - - - StorageAccountName - - Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. - - String - - String - - - none - - - StorageKeyType - - The type of storage key. Valid values are: Primary, Secondary. - - String - - String - - - none - - - RetentionInDays + + State - + The state to set Transparent Data Encryption to for the Azure SQL Database. - Nullable`1[UInt32] + TransparentDataEncryptionStateType - Nullable`1[UInt32] + TransparentDataEncryptionStateType - - TableIdentifier + + ServerName - + The name of the Azure SQL Database Server the database is in. String @@ -8475,29 +9483,29 @@ Switch-AzureMode –Name AzureResourceManager - - ServerName + + DatabaseName - The name of the server. + The name of the Azure SQL Database to retrieve. String String - none + ResourceGroupName - The name of the resource group that contains the server. + The name of the resource group of the server containing the database to retrieve. String String - none + Profile @@ -8509,7 +9517,7 @@ Switch-AzureMode –Name AzureResourceManager AzureProfile - none + @@ -8520,7 +9528,7 @@ Switch-AzureMode –Name AzureResourceManager - None + System.String @@ -8532,7 +9540,7 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel + Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel @@ -8546,16 +9554,20 @@ Switch-AzureMode –Name AzureResourceManager - -------------------------- Code Example -------------------------- + -------------------------- Code Example 1 -------------------------- PS C:\> - PS C:\>Get-Help Set-AzureSqlServerAuditingPolicy + PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled - Code Example Description + The following command updates the transparent data encryption state for the Azure SQL database named "database1". - + PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled + +ResourceGroupName ServerName DatabaseName State +----------------- ---------- ------------ ----- +resourcegroup1 server1 database1 Disabled @@ -8568,205 +9580,15 @@ Switch-AzureMode –Name AzureResourceManager - Azure_SqlDatabase - + Transparent Data Encryption with Azure SQL Database + https://msdn.microsoft.com/library/dn948096 - Set-AzureSqlDatabaseTransparentDataEncryption - - Updates properties for Transparent Data Encryption for an Azure SQL Database. - - - - - Set - AzureSqlDatabaseTransparentDataEncryption - - - - The Set-SetAzureSqlDatabaseTransparentDataEncryption cmdlet is used to set the Transparent Data Encryption (TDE) property of an already existing Azure SQL database. Use the ResourceGroupName, ServerName, and DatabaseName. Use "Enabled" or "Disabled" to specify the target state of TDE for an Azure SQL Database. If the command succeeds and the PassThru switch is on, it returns an object describing the TDE state as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName). - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - Set-AzureSqlDatabaseTransparentDataEncryption - - State - - The state to set Transparent Data Encryption to for the Azure SQL Database. - - TransparentDataEncryptionStateType - - - ServerName - - The name of the Azure SQL Database Server the database is in. - - String - - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - - ResourceGroupName - - The name of the resource group of the server containing the database to retrieve. - - String - - - Profile - - In-memory profile - - AzureProfile - - - - - - State - - The state to set Transparent Data Encryption to for the Azure SQL Database. - - TransparentDataEncryptionStateType - - TransparentDataEncryptionStateType - - - - - - ServerName - - The name of the Azure SQL Database Server the database is in. - - String - - String - - - - - - DatabaseName - - The name of the Azure SQL Database to retrieve. - - String - - String - - - - - - ResourceGroupName - - The name of the resource group of the server containing the database to retrieve. - - String - - String - - - - - - Profile - - In-memory profile - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - -System.String - - - - - - - OutputType - - - - - -Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Code Example 1 -------------------------- - - PS C:\> - - PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled - - The following command updates the transparent data encryption state for the Azure SQL database named "database1". - - - PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled - -ResourceGroupName ServerName DatabaseName State ------------------ ---------- ------------ ----- -resourcegroup1 server1 database1 Disabled - - - - - - - - - - - - - Transparent Data Encryption with Azure SQL Database - https://msdn.microsoft.com/library/dn948096 - - - - - - - Set-AzureSqlElasticPool + Set-AzureSqlElasticPool Updates properties for an Azure SQL elastic database pool. @@ -8989,7 +9811,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -9001,7 +9824,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -9097,9 +9921,9 @@ Switch-AzureMode –Name AzureResourceManager String - SqlAdminPassword + SqlAdministratorPassword - The new SQL administrator password for the server. + SecureString @@ -9168,16 +9992,16 @@ Switch-AzureMode –Name AzureResourceManager none - SqlAdminPassword + SqlAdministratorPassword - The new SQL administrator password for the server. + SecureString SecureString - none + Tags @@ -9263,6 +10087,18 @@ Switch-AzureMode –Name AzureResourceManager + + SqlAdminPassword + + The new SQL administrator password for the server. + + securestring + + securestring + + + none + @@ -9272,7 +10108,8 @@ Switch-AzureMode –Name AzureResourceManager - System.String + +System.String @@ -9284,7 +10121,8 @@ Switch-AzureMode –Name AzureResourceManager - System.Object + +System.Object @@ -9448,7 +10286,7 @@ Switch-AzureMode –Name AzureResourceManager Profile - In-memory profile. + AzureProfile @@ -9493,46 +10331,262 @@ System.Object - - -------------------------- Code Example 1 -------------------------- - - PS C:\> - - PS C:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" - - This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23" - - - -ResourceGroupName ServerName DisplayName ObjectId ------------------ ---------- ----------- -------- -Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b - - - - - - - - - - - -------------------------- Code Example 2 -------------------------- - - PS C:\> - - PS C:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "Bob Johns" - - This command provisions an Azure Active Directory user "Bob Johns" as an administrator for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23" - - - -ResourceGroupName ServerName DisplayName ObjectId ------------------ ---------- ----------- -------- -Group-23 aad-managed-demo Bob Johns 11E95548-B179-4FE1-9AF4-ACA49D13ABB9 - - - + + + + + + + + Set-AzureSqlServerAuditingPolicy + + Sets an Azure SQL Database server's auditing policy. + + + + + Set + AzureSqlServerAuditingPolicy + + + + The Set-AzureSqlServerAuditingPolicy cmdlet changes the auditing policy of an Azure SQL Database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server, the StorageAccountName parameter to specify the storage account to be used for the audit logs and the EventType parameter to define which event types to audit. The auditing policy of a database server apply to all the databases in this server that are marked as using the server's auditing policy, as well as all newly created databases.If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the server's identifiers (i.e. ResourceGroupName and ServerName). + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlServerAuditingPolicy + + PassThru + + Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + EventType + + Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None. + It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. + + String[] + + + StorageAccountName + + Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. + + String + + + StorageKeyType + + The type of storage key. Valid values are: Primary, Secondary. + + String + + + RetentionInDays + + + + Nullable`1[UInt32] + + + TableIdentifier + + + + String + + + ServerName + + The name of the server. + + String + + + ResourceGroupName + + The name of the resource group that contains the server. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + PassThru + + Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + + EventType + + Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None. + It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet. + + String[] + + String[] + + + none + + + StorageAccountName + + Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail. + + String + + String + + + none + + + StorageKeyType + + The type of storage key. Valid values are: Primary, Secondary. + + String + + String + + + none + + + RetentionInDays + + + + Nullable`1[UInt32] + + Nullable`1[UInt32] + + + + + + TableIdentifier + + + + String + + String + + + + + + ServerName + + The name of the server. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group that contains the server. + + String + + String + + + none + + + Profile + + In-memory profile + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + +None + + + + + + + OutputType + + + + + +Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example 1 -------------------------- + + PS C:\> + + PS C:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" + + This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23" + + + +ResourceGroupName ServerName DisplayName ObjectId +----------------- ---------- ----------- -------- +Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b + + + @@ -9540,20 +10594,1064 @@ Group-23 aad-managed-demo Bob - -------------------------- Code Example 3 -------------------------- + -------------------------- Code Example 2 -------------------------- + + PS C:\> + + PS C:\>Get-Help Set-AzureSqlServerAuditingPolicy + + Code Example Description + + +ResourceGroupName ServerName DisplayName ObjectId +----------------- ---------- ----------- -------- +Group-23 aad-managed-demo Bob Johns 11E95548-B179-4FE1-9AF4-ACA49D13ABB9 + + + + + + + + + + + -------------------------- Code Example 3 -------------------------- + + PS C:\> + + PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b" + + This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23". To enforce <DisplayName> uniqueness, an optional parameter <–ObjectId > "40b79501-b343-44ed-9ce7-da4c8cc7353b" representing Azure AD ObjectID for the DBAs group is included + + + PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b" + +ResourceGroupName ServerName DisplayName ObjectId +----------------- ---------- ----------- -------- +Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b + + + + + + + + + + + + + Azure_SqlDatabase + + + + + + + + Set-AzureSqlServerFirewallRule + + Updates an Azure SQL Server firewall rule. + + + + + Set + AzureSqlServerFirewallRule + + + + The Set-AzureSqlServerFirewallRule cmdlet updates an Azure SQL Server firewall rule. + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. + + + + Set-AzureSqlServerFirewallRule + + FirewallRuleName + + The name of the Azure SQL Server firewall rule to update. + + String + + + StartIpAddress + + The new starting IP address for the firewall rule. + + String + + + EndIpAddress + + The new ending IP address for this rule. + + String + + + ServerName + + The name of the Azure SQL Server that contains the firewall rule you want to change. + + String + + + ResourceGroupName + + The name of the resource group that contains the Azure SQL Server with the firewall rule to change. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + FirewallRuleName + + The name of the Azure SQL Server firewall rule to update. + + String + + String + + + none + + + StartIpAddress + + The new starting IP address for the firewall rule. + + String + + String + + + none + + + EndIpAddress + + The new ending IP address for this rule. + + String + + String + + + none + + + ServerName + + The name of the Azure SQL Server that contains the firewall rule you want to change. + + String + + String + + + none + + + ResourceGroupName + + The name of the resource group that contains the Azure SQL Server with the firewall rule to change. + + String + + String + + + none + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + none + + + + + + InputType + + + + + +System.String + + + + + + + OutputType + + + + + +System.Object + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Set-AzureSqlServerFirewallRule + + + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Get-AzureSqlServerFirewallRule + + + + New-AzureSqlServerFirewallRule + + + + Remove-AzureSqlServerFirewallRule + + + + + + + + Start-AzureSqlDatabaseExecuteIndexRecommendation + + + + + + + Start + AzureSqlDatabaseExecuteIndexRecommendation + + + + + + + + Start-AzureSqlDatabaseExecuteIndexRecommendation + + ServerName + + + + String + + + DatabaseName + + + + String + + + IndexRecommendationName + + + + String + + + ResourceGroupName + + + + String + + + Profile + + + + AzureProfile + + + + + + ServerName + + + + String + + String + + + + + + DatabaseName + + + + String + + String + + + + + + IndexRecommendationName + + + + String + + String + + + + + + ResourceGroupName + + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Start-AzureSqlServerUpgrade + + Starts upgrading an Azure SQL V11 server to a V12 server. + + + + + Start + AzureSqlServerUpgrade + + + + The Start-AzureSqlServerUpgrade cmdlet starts the upgrade of a SQL V11 server to V12. +Monitor the progress of an upgrade with the Get-AzureSqlServerUpgrade cmdlet. +You can stop the upgrade process with the Stop-AzureSqlServerUpgrade cmdlet. + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode -Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. + + + + Start-AzureSqlServerUpgrade + + ServerVersion + + The target version to upgrade the Azure SQL Server. Currently the version must be "12.0". + + String + + + ScheduleUpgradeAfterUtcDateTime + + The earliest time to upgrade the Azure SQL Server as a DateTime object. The time must be specified in the ISO8601 format and in UTC time zone. + + Nullable`1[DateTime] + + + DatabaseCollection + + Collection of RecommendedDatabaseProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. + + RecommendedDatabaseProperties[] + + + ElasticPoolCollection + + Collection of UpgradeRecommendedElasticPoolProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. + + UpgradeRecommendedElasticPoolProperties[] + + + ServerName + + The name of the Azure SQL Server to upgrade. + + String + + + ResourceGroupName + + The name of resource group containing the Azure SQL Server. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + + + + ServerVersion + + The target version to upgrade the Azure SQL Server. Currently the version must be "12.0". + + String + + String + + + + + + ScheduleUpgradeAfterUtcDateTime + + The earliest time to upgrade the Azure SQL Server as a DateTime object. The time must be specified in the ISO8601 format and in UTC time zone. + + Nullable`1[DateTime] + + Nullable`1[DateTime] + + + + + + DatabaseCollection + + Collection of RecommendedDatabaseProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. + + RecommendedDatabaseProperties[] + + RecommendedDatabaseProperties[] + + + + + + ElasticPoolCollection + + Collection of UpgradeRecommendedElasticPoolProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. + + UpgradeRecommendedElasticPoolProperties[] + + UpgradeRecommendedElasticPoolProperties[] + + + + + + ServerName + + The name of the Azure SQL Server to upgrade. + + String + + String + + + + + + ResourceGroupName + + The name of resource group containing the Azure SQL Server. + + String + + String + + + + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + + + + + + + InputType + + + + + +System.String + + + + + + + OutputType + + + + + + + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example 1: Simple server upgrade -------------------------- + + PS C:\> + + Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 + + Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0 +The server "MySqlServer" must have version 2.0, otherwise the command will fail. + + + + + + + + + + + + + + -------------------------- Example 2: Upgrade server with schedule time and target database properties -------------------------- + + PS C:\> + + $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime() +$databaseMap = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.RecommendedDatabaseProperties +$databaseMap.Name = "testdb" +$databaseMap.TargetEdition = "Standard" +$databaseMap.TargetServiceLevelObjective = "S0" +Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -DatabaseCollection @($databaseMap) + + Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0. +The server "MySqlServer" must have version 2.0 and a database named "testdb", otherwise the command will fail. + + + + + + + + + + + + + + -------------------------- Example 3: Upgrade server with schedule time and target elastic pool properties -------------------------- + + PS C:\> + + $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime() +$elasticPool = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.UpgradeRecommendedElasticPoolProperties +$elasticPool.DatabaseDtuMax = 100 +$elasticPool.DatabaseDtuMin = 50 +$elasticPool.Dtu = 800 +$elasticPool.Edition = "Standard" +$elasticPool.IncludeAllDatabases = $true +$elasticPool.Name = "my_ep" +$elasticPool.StorageMb = 800 * 1024 +Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -ElasticPoolCollection @($elasticPool) + + Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0. +The server "MySqlServer" must have version 2.0, otherwise the command will fail. + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Stop-AzureSqlServerUpgrade + + + + Get-AzureSqlServerUpgrade + + + + + + + + Stop-AzureSqlDatabaseExecuteIndexRecommendation + + + + + + + Stop + AzureSqlDatabaseExecuteIndexRecommendation + + + + + + + + Stop-AzureSqlDatabaseExecuteIndexRecommendation + + ServerName + + + + String + + + DatabaseName + + + + String + + + IndexRecommendationName + + + + String + + + ResourceGroupName + + + + String + + + Profile + + + + AzureProfile + + + + + + ServerName + + + + String + + String + + + + + + DatabaseName + + + + String + + String + + + + + + IndexRecommendationName + + + + String + + String + + + + + + ResourceGroupName + + + + String + + String + + + + + + Profile + + + + AzureProfile + + AzureProfile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Stop-AzureSqlServerUpgrade + + Stops an Azure SQL Server Upgrade. + + + + + Stop + AzureSqlServerUpgrade + + + + The Stop-AzureSqlServerUpgrade cmdlet stops the upgrade process. + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. + + + + Stop-AzureSqlServerUpgrade + + Force + + Skip confirmation message for performing this action. + + SwitchParameter + + + ServerName + + The name of the Azure SQL Server to stop upgrading. + + String + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server. + + String + + + Profile + + In-memory profile. + + AzureProfile + + + WhatIf + + + + SwitchParameter + + + Confirm + + + + SwitchParameter + + + + + + Force + + Skip confirmation message for performing this action. + + SwitchParameter + + SwitchParameter + + + + + + ServerName + + The name of the Azure SQL Server to stop upgrading. + + String + + String + + + + + + ResourceGroupName + + The name of the resource group containing the Azure SQL Server. + + String + + String + + + + + + Profile + + In-memory profile. + + AzureProfile + + AzureProfile + + + + + + WhatIf + + + + SwitchParameter + + SwitchParameter + + + + + + Confirm + + + + SwitchParameter + + SwitchParameter + + + + + + + + + InputType + + + + + +System.String + + + + + + + OutputType + + + + + + + + + + + + + + + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + + + + -------------------------- Example 1: Stop a server upgrade -------------------------- PS C:\> - PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b" + Stop-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer - This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23". To enforce <DisplayName> uniqueness, an optional parameter <–ObjectId > "40b79501-b343-44ed-9ce7-da4c8cc7353b" representing Azure AD ObjectID for the DBAs group is included + Stop the request to upgrade server "MySqlServer" in resource group "MyResourceGroup". - PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b" - -ResourceGroupName ServerName DisplayName ObjectId ------------------ ---------- ----------- -------- -Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b + @@ -9566,11 +11664,15 @@ Group-23 aad-managed-demo DBAs - Get-AzureSqlServerActiveDirectoryAdministrator + Azure_SqlDatabase + + + + Start-AzureSqlServerUpgrade - Remove-AzureSqlServerActiveDirectoryAdministrator + Get-AzureSqlServerUpgrade @@ -9578,15 +11680,15 @@ Group-23 aad-managed-demo DBAs - Start-AzureSqlServerUpgrade + Suspend-AzureSqlDatabase - Start - AzureSqlServerUpgrade + Suspend + AzureSqlDatabase @@ -9594,37 +11696,16 @@ Group-23 aad-managed-demo DBAs - Start-AzureSqlServerUpgrade - - ServerVersion + Suspend-AzureSqlDatabase + + ServerName String - - ScheduleUpgradeAfterUtcDateTime - - - - Nullable`1[DateTime] - - - DatabaseCollection - - - - RecommendedDatabaseProperties[] - - - ElasticPoolCollection - - - - UpgradeRecommendedElasticPoolProperties[] - - ServerName + DatabaseName @@ -9647,8 +11728,8 @@ Group-23 aad-managed-demo DBAs - - ServerVersion + + ServerName @@ -9659,102 +11740,225 @@ Group-23 aad-managed-demo DBAs - - ScheduleUpgradeAfterUtcDateTime + + DatabaseName - Nullable`1[DateTime] + String - Nullable`1[DateTime] + String - - DatabaseCollection + + ResourceGroupName - RecommendedDatabaseProperties[] + String - RecommendedDatabaseProperties[] + String - - ElasticPoolCollection + + Profile - UpgradeRecommendedElasticPoolProperties[] + AzureProfile - UpgradeRecommendedElasticPoolProperties[] + AzureProfile - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Use-AzureSqlServerAuditingPolicy + + Marks an Azure SQL Database as using its server's auditing policy. + + + + + Use + AzureSqlServerAuditingPolicy + + + + The Use-AzureSqlServerAuditingPolicy cmdlet marks an Azure SQL Database as using its server's auditing policy. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. If no auditing policy was defined already for the database server, this cmdlet would fail. + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. + + + + Use-AzureSqlServerAuditingPolicy + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + + ServerName + + The name of the server. + + String + + + DatabaseName + + The name of the database. + + String + + + ResourceGroupName + + The name of the resource group containing the server. + + String + + + Profile + + In-memory profile + + AzureProfile + + + + + + PassThru + + Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + + SwitchParameter + + SwitchParameter + + + none + + ServerName - + The name of the server. + + String + + String + + + none + + + DatabaseName + + The name of the database. String String - + none ResourceGroupName - + The name of the resource group containing the server. String String - + none Profile - + In-memory profile AzureProfile AzureProfile - + none - + InputType - +None - + OutputType - +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel @@ -9763,175 +11967,145 @@ Group-23 aad-managed-demo DBAs - + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Get-Help Use-AzureSqlDatabaseServerAuditPolicy + + + + + + + + + + + + + + + + Azure_SqlDatabase + + - Stop-AzureSqlServerUpgrade + Disable-AzureSqlDatabaseDirectAccess - + Disables the option to directly access an Azure SQL Database (without auditing). - Stop - AzureSqlServerUpgrade + + - + The Disable-AzureSqlDatabaseDirectAccess cmdlet disables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet, directly accessing an Azure Sql Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) + Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: +Switch-AzureMode –Name AzureResourceManager + For more information, see Using Windows PowerShell with Resource Manager. - - Stop-AzureSqlServerUpgrade - - Force - - - - SwitchParameter - - - ServerName - - - - String - - - ResourceGroupName - - - - String - - - Profile - - - - AzureProfile - - - WhatIf - - - - SwitchParameter - - - Confirm - - - - SwitchParameter - - - Force + PassThru - + Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - SwitchParameter + switchparameter - SwitchParameter + switchparameter - + none - + ServerName - - - String - - String - - - - - - ResourceGroupName - - + Specifies the name of the database server holding the database. - String + string - String + string - + none - - Profile + + DatabaseName - + Specifies the name of the database. Wildcards are not permitted. - AzureProfile + string - AzureProfile + string - + none - - WhatIf + + ResourceGroupName - + Specifies the name of the resource group of the database. - SwitchParameter + string - SwitchParameter + string - + none - Confirm + Profile - + In-memory profile. - SwitchParameter + azureprofile - SwitchParameter + azureprofile - + none - + InputType - +None - + OutputType - +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel @@ -9940,119 +12114,109 @@ Group-23 aad-managed-demo DBAs - + This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + + -------------------------- Code Example -------------------------- + + PS C:\> + + PS C:\>Disable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" + + + + + + + + + + + + + + + + Azure_SqlDatabase + + + + Enable-AzureSqlDatabaseDirectAccess + + - Use-AzureSqlServerAuditingPolicy + Enable-AzureSqlDatabaseDirectAccess - Marks an Azure SQL Database as using its server's auditing policy. + Enables the option to directly access an Azure SQL Database (with auditing). - Use - AzureSqlServerAuditingPolicy + + - The Use-AzureSqlServerAuditingPolicy cmdlet marks an Azure SQL Database as using its server's auditing policy. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. If no auditing policy was defined already for the database server, this cmdlet would fail. + The Enable-AzureSqlDatabaseDirectAccess cmdlet enables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.After the successful execution of the cmdlet, directly accessing to an Azure SQL Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName). Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: Switch-AzureMode –Name AzureResourceManager For more information, see Using Windows PowerShell with Resource Manager. - - Use-AzureSqlServerAuditingPolicy - - PassThru - - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - - SwitchParameter - - - ServerName - - The name of the server. - - String - - - DatabaseName - - The name of the database. - - String - - - ResourceGroupName - - The name of the resource group containing the server. - - String - - - Profile - - In-memory profile - - AzureProfile - - PassThru - Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. + Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output. - SwitchParameter + switchparameter - SwitchParameter + switchparameter none - + ServerName - The name of the server. + The name of the server containing the database. - String + string - String + string none - + DatabaseName The name of the database. - String + string - String + string none - + ResourceGroupName - The name of the resource group containing the server. + Specifies the name of the resource group of the database. - String + string - String + string none @@ -10060,11 +12224,11 @@ Switch-AzureMode –Name AzureResourceManager Profile - In-memory profile + In-memory profile. - AzureProfile + azureprofile - AzureProfile + azureprofile none @@ -10078,7 +12242,8 @@ Switch-AzureMode –Name AzureResourceManager - None + +None @@ -10090,7 +12255,8 @@ Switch-AzureMode –Name AzureResourceManager - Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel + +Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel @@ -10108,7 +12274,7 @@ Switch-AzureMode –Name AzureResourceManager PS C:\> - PS C:\>Get-Help Use-AzureSqlDatabaseServerAuditPolicy + PS C:\>Enable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1" @@ -10129,14 +12295,18 @@ Switch-AzureMode –Name AzureResourceManager Azure_SqlDatabase + + Disable-AzureSqlDatabaseDirectAccess + + - Get-AzureSqlDatabaseActivity + Get-AzureSqlElasticPoolRecommendationDatabase - Gets the status of database operations in an elastic database pool. + @@ -10146,85 +12316,95 @@ Switch-AzureMode –Name AzureResourceManager - Gets the status of moving elastic databases in and out of an elastic pool. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. + - - ElasticPoolName + + ElasticPoolRecommendation - The name of the Azure SQL elastic pool. + - system.string + string - system.string + string - none + - - Profile + + DatabaseName - In-memory profile. + - microsoft.azure.common.authentication.models.azureprofile + string - microsoft.azure.common.authentication.models.azureprofile + string - none + + ServerName + + + + string + + string + + + + + ResourceGroupName - The name of the resource group containing the Azure SQL Server that the elastic pool is in. + - system.string + string - system.string + string - none + - - ServerName + + Profile - The name of the Azure SQL Server that the elastic pool is in. + - system.string + azureprofile - system.string + azureprofile - none + - InputType + - System.String + + - OutputType + - System.Object + + @@ -10233,44 +12413,20 @@ Switch-AzureMode –Name AzureResourceManager - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + - - -------------------------- Example -------------------------- - - PS C:\> - - PS C:\>Get-AzureSqlDatabaseActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1" - - The following example returns the operation status of all databases in an elastic pool named "elasticpool1". - - - - - - - - - - - - - - Azure_SqlDatabase - - - New-AzureSqlServerFirewallRule + Get-AzureSqlElasticPoolRecommendationMetrics - Creates a new firewall rule for an Azure SQL Database server. + @@ -10280,121 +12436,83 @@ Switch-AzureMode –Name AzureResourceManager - The New-AzureSqlServerFirewallRule cmdlet creates a new firewall rule for the specified SQL Database server. - -Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. + - - AllowAllAzureIPs + + ElasticPoolRecommendation - Allows other Azure services to connect to the server. This is a special firewall rule that allows all Azure IPs to access the server. + - switchparameter + string - switchparameter + string - none + - - EndIpAddress + + ServerName - End value of the IP address range. + - system.string + string - system.string + string - none + - - FirewallRuleName + + ResourceGroupName - The name of the new firewall rule. + - system.string + string - system.string + string - none + Profile - In-memory profile. - - microsoft.azure.common.authentication.models.azureprofile - - microsoft.azure.common.authentication.models.azureprofile - - - none - - - ResourceGroupName - - The name of the resource group that contains the Azure SQL Server this firewall rule will be created for. - - system.string - - system.string - - - none - - - ServerName - - The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name. - - system.string - - system.string - - - none - - - StartIpAddress - - Start value of the IP address range. + - system.string + azureprofile - system.string + azureprofile - none + - InputType + - System.String + + - OutputType + - System.Object + + @@ -10403,561 +12521,12 @@ Switch-AzureMode –Name AzureResourceManager - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. + - - -------------------------- Example -------------------------- - - PS C:\> - - PS C:\>New-AzureSqlServerFirewallRule -ResourceGroupName "resourcegroup1" -ServerName "server1" -FirewallRuleName "rule1" -StartIpAddress "192.168.0.198" -EndIpAddress "192.168.0.199" - - The following example creates a new firewall rule. - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Get-AzureSqlServerFirewallRule - - - - Remove-AzureSqlServerFirewallRule - - - - Set-AzureSqlServerFirewallRule - - - - - - Start-AzureSqlServerUpgrade - - Starts upgrading an Azure SQL V11 server to a V12 server. - - - - - Start - AzureSqlServerUpgrade - - - - The Start-AzureSqlServerUpgrade cmdlet starts the upgrade of a SQL V11 server to V12. -Monitor the progress of an upgrade with the Get-AzureSqlServerUpgrade cmdlet. -You can stop the upgrade process with the Stop-AzureSqlServerUpgrade cmdlet. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode -Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - - - ServerVersion - - The target version to upgrade the Azure SQL Server. Currently the version must be "12.0". - - String - - String - - - - - - ScheduleUpgradeAfterUtcDateTime - - The earliest time to upgrade the Azure SQL Server as a DateTime object. The time must be specified in the ISO8601 format and in UTC time zone. - - Nullable`1[DateTime] - - Nullable`1[DateTime] - - - - - - DatabaseCollection - - Collection of RecommendedDatabaseProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. - - RecommendedDatabaseProperties[] - - RecommendedDatabaseProperties[] - - - - - - ElasticPoolCollection - - Collection of UpgradeRecommendedElasticPoolProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object. - - UpgradeRecommendedElasticPoolProperties[] - - UpgradeRecommendedElasticPoolProperties[] - - - - - - ServerName - - The name of the Azure SQL Server to upgrade. - - String - - String - - - - - - ResourceGroupName - - The name of resource group containing the Azure SQL Server. - - String - - String - - - - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - System.String - - - - - - - OutputType - - - - - - - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example 1: Simple server upgrade -------------------------- - - PS C:\> - - Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 - - Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0 -The server "MySqlServer" must have version 2.0, otherwise the command will fail. - - - - - - - - - - - - - - -------------------------- Example 2: Upgrade server with schedule time and target database properties -------------------------- - - PS C:\> - - $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime() -$databaseMap = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.RecommendedDatabaseProperties -$databaseMap.Name = "testdb" -$databaseMap.TargetEdition = "Standard" -$databaseMap.TargetServiceLevelObjective = "S0" -Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -DatabaseCollection @($databaseMap) - - Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0. -The server "MySqlServer" must have version 2.0 and a database named "testdb", otherwise the command will fail. - The earliest time to upgrade is 5 minutes after the cmdlet invocation. -After upgrade, the database "testdb" will have edition "Standard" and Service Level Objective "S0". - - - - - - - - - - - - - - -------------------------- Example 3: Upgrade server with schedule time and target elastic pool properties -------------------------- - - PS C:\> - - $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime() -$elasticPool = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.UpgradeRecommendedElasticPoolProperties -$elasticPool.DatabaseDtuMax = 100 -$elasticPool.DatabaseDtuMin = 50 -$elasticPool.Dtu = 800 -$elasticPool.Edition = "Standard" -$elasticPool.IncludeAllDatabases = $true -$elasticPool.Name = "my_ep" -$elasticPool.StorageMb = 800 * 1024 -Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -ElasticPoolCollection @($elasticPool) - - Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0. -The server "MySqlServer" must have version 2.0, otherwise the command will fail. - The earliest time to upgrade is 5 minutes after the cmdlet invocation. -After upgrade, all databases will be in the elastic pool "my_ep". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Stop-AzureSqlServerUpgrade - - - - Get-AzureSqlServerUpgrade - - - - - - - - Stop-AzureSqlServerUpgrade - - Stops an Azure SQL Server Upgrade. - - - - - Stop - AzureSqlServerUpgrade - - - - The Stop-AzureSqlServerUpgrade cmdlet stops the upgrade process. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - - - Force - - Skip confirmation message for performing this action. - - SwitchParameter - - SwitchParameter - - - - - - ServerName - - The name of the Azure SQL Server to stop upgrading. - - String - - String - - - - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - String - - - - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - System.String - - - - - - - OutputType - - - - - - - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example 1: Stop a server upgrade -------------------------- - - PS C:\> - - Stop-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer - - Stop the request to upgrade server "MySqlServer" in resource group "MyResourceGroup". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Start-AzureSqlServerUpgrade - - - - Get-AzureSqlServerUpgrade - - - - - - - - Get-AzureSqlServerUpgrade - - Gets the status of an Azure SQL Server Upgrade. - - - - - Get - AzureSqlServerUpgrade - - - - The Get-AzureSqlServerUpgrade cmdlet returns the status of an Azure SQL Server Upgrade. - Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command: -Switch-AzureMode –Name AzureResourceManager - For more information, see Using Windows PowerShell with Resource Manager. - - - - - - ServerName - - The name of the Azure SQL Server to get upgrade status. - - String - - String - - - - - - ResourceGroupName - - The name of the resource group containing the Azure SQL Server. - - String - - String - - - - - - Profile - - In-memory profile. - - AzureProfile - - AzureProfile - - - - - - - - - InputType - - - - - System.String - - - - - - - OutputType - - - - - - - - - - - - - - - This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters. - - - - - -------------------------- Example 1: Get status of a server upgrade -------------------------- - - PS C:\> - - Get-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer | Format-List - - Get the status of an upgrade request from server "MySqlServer" in resource group "MyResourceGroup". - - - - - - - - - - - - - - - - Azure_SqlDatabase - - - - Start-AzureSqlServerUpgrade - - - - Stop-AzureSqlServerUpgrade - - - - \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs index 8f8748c4718b..c567ee384e7b 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34014 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -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()] - internal class Resources { + public class Resources { private static global::System.Resources.ResourceManager resourceMan; @@ -36,7 +36,7 @@ internal Resources() { /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { + public static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.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)] - internal static global::System.Globalization.CultureInfo Culture { + public 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-AzureADGroup -SearchString "{0}". /// - internal static string ADGroupMoreThanOneFound { + public static string ADGroupMoreThanOneFound { get { return ResourceManager.GetString("ADGroupMoreThanOneFound", resourceCulture); } @@ -72,7 +72,7 @@ internal 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-AzureADGroup, or to get a list of Azure Active Directory users use Get-AzureADUser.. /// - internal static string ADObjectNotFound { + public static string ADObjectNotFound { get { return ResourceManager.GetString("ADObjectNotFound", resourceCulture); } @@ -81,7 +81,7 @@ internal 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-AzureADUser -SearchString "{0}". /// - internal static string ADUserMoreThanOneFound { + public static string ADUserMoreThanOneFound { get { return ResourceManager.GetString("ADUserMoreThanOneFound", resourceCulture); } @@ -90,7 +90,7 @@ internal static string ADUserMoreThanOneFound { /// /// Looks up a localized string similar to Database with name: '{0}' already exists in server '{1}'.. /// - internal static string DatabaseNameExists { + public static string DatabaseNameExists { get { return ResourceManager.GetString("DatabaseNameExists", resourceCulture); } @@ -99,7 +99,7 @@ internal 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). /// - internal static string DatabaseNotInServiceTierForAuditingPolicy { + public static string DatabaseNotInServiceTierForAuditingPolicy { get { return ResourceManager.GetString("DatabaseNotInServiceTierForAuditingPolicy", resourceCulture); } @@ -108,7 +108,7 @@ internal static string DatabaseNotInServiceTierForAuditingPolicy { /// /// Looks up a localized string similar to A data masking rule for alias '{0}' is already exists. /// - internal static string DataMaskingAliasAlreadyUsedError { + public static string DataMaskingAliasAlreadyUsedError { get { return ResourceManager.GetString("DataMaskingAliasAlreadyUsedError", resourceCulture); } @@ -117,7 +117,7 @@ internal static string DataMaskingAliasAlreadyUsedError { /// /// Looks up a localized string similar to Cannot set a lower bound which is larger than the higher bound. /// - internal static string DataMaskingNumberRuleIntervalDefinitionError { + public static string DataMaskingNumberRuleIntervalDefinitionError { get { return ResourceManager.GetString("DataMaskingNumberRuleIntervalDefinitionError", resourceCulture); } @@ -126,7 +126,7 @@ internal static string DataMaskingNumberRuleIntervalDefinitionError { /// /// Looks up a localized string similar to The rule {0} does not exist. /// - internal static string DataMaskingRuleDoesNotExist { + public static string DataMaskingRuleDoesNotExist { get { return ResourceManager.GetString("DataMaskingRuleDoesNotExist", resourceCulture); } @@ -135,7 +135,7 @@ internal static string DataMaskingRuleDoesNotExist { /// /// Looks up a localized string similar to A data masking rule for the table '{0}' and column '{1}' already exists. /// - internal static string DataMaskingTableAndColumnUsedError { + public static string DataMaskingTableAndColumnUsedError { get { return ResourceManager.GetString("DataMaskingTableAndColumnUsedError", resourceCulture); } @@ -144,7 +144,7 @@ internal static string DataMaskingTableAndColumnUsedError { /// /// Looks up a localized string similar to The {0} cmdlet is deprecated and will be removed in a future release.. /// - internal static string DeprecatedCmdletUsageWarning { + public static string DeprecatedCmdletUsageWarning { get { return ResourceManager.GetString("DeprecatedCmdletUsageWarning", resourceCulture); } @@ -153,7 +153,7 @@ internal static string DeprecatedCmdletUsageWarning { /// /// Looks up a localized string similar to Elastic Pool with name: '{0}' already exists in server '{1}'.. /// - internal static string ElasticPoolNameExists { + public static string ElasticPoolNameExists { get { return ResourceManager.GetString("ElasticPoolNameExists", resourceCulture); } @@ -162,7 +162,7 @@ internal static string ElasticPoolNameExists { /// /// Looks up a localized string similar to {your_password_here}. /// - internal static string EnterPassword { + public static string EnterPassword { get { return ResourceManager.GetString("EnterPassword", resourceCulture); } @@ -171,7 +171,7 @@ internal static string EnterPassword { /// /// Looks up a localized string similar to {your_user_id_here}. /// - internal static string EnterUserId { + public static string EnterUserId { get { return ResourceManager.GetString("EnterUserId", resourceCulture); } @@ -180,7 +180,7 @@ internal 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.. /// - internal static string InvalidADGroupNotSecurity { + public static string InvalidADGroupNotSecurity { get { return ResourceManager.GetString("InvalidADGroupNotSecurity", resourceCulture); } @@ -189,16 +189,16 @@ internal static string InvalidADGroupNotSecurity { /// /// Looks up a localized string similar to Cannot use the '{0}' option with other event types.. /// - internal static string InvalidEventTypeSet { + public static string InvalidEventTypeSet { get { return ResourceManager.GetString("InvalidEventTypeSet", resourceCulture); } } /// - /// Looks up a localized string similar to Please use Set-AzureEnvironment to set a valid GraphEndpoint in the AzureEnvironment. . + /// Looks up a localized string similar to Please use Set-AzureEnvironment to set a valid GraphEndpoint for the current AzureEnvironment.. /// - internal static string InvalidGraphEndpoint { + public static string InvalidGraphEndpoint { get { return ResourceManager.GetString("InvalidGraphEndpoint", resourceCulture); } @@ -207,7 +207,7 @@ internal static string InvalidGraphEndpoint { /// /// Looks up a localized string similar to Cannot use audit table retention without specifying TableIdentifier. You may want to use '{0}'.. /// - internal static string InvalidRetentionTypeSet { + public static string InvalidRetentionTypeSet { get { return ResourceManager.GetString("InvalidRetentionTypeSet", resourceCulture); } @@ -216,7 +216,7 @@ internal static string InvalidRetentionTypeSet { /// /// Looks up a localized string similar to Please set a valid tenant id in the AzureEnvironment.. /// - internal static string InvalidTenantId { + public static string InvalidTenantId { get { return ResourceManager.GetString("InvalidTenantId", resourceCulture); } @@ -225,7 +225,7 @@ internal static string InvalidTenantId { /// /// Looks up a localized string similar to A data masking rule with the id '{0}' already exist. /// - internal static string NewDataMaskingRuleIdAlreadyExistError { + public static string NewDataMaskingRuleIdAlreadyExistError { get { return ResourceManager.GetString("NewDataMaskingRuleIdAlreadyExistError", resourceCulture); } @@ -234,7 +234,7 @@ internal static string NewDataMaskingRuleIdAlreadyExistError { /// /// Looks up a localized string similar to Rule Id cannot contain '<,>,+,=,#,*,%,&,\,/,?' and cannot end with a '.'. /// - internal static string NewDataMaskingRuleIdIsNotValid { + public static string NewDataMaskingRuleIdIsNotValid { get { return ResourceManager.GetString("NewDataMaskingRuleIdIsNotValid", resourceCulture); } @@ -243,7 +243,7 @@ internal static string NewDataMaskingRuleIdIsNotValid { /// /// Looks up a localized string similar to Cannot set auditing policy without a storage account name.. /// - internal static string NoStorageAccountWhenConfiguringAuditingPolicy { + public static string NoStorageAccountWhenConfiguringAuditingPolicy { get { return ResourceManager.GetString("NoStorageAccountWhenConfiguringAuditingPolicy", resourceCulture); } @@ -252,7 +252,7 @@ internal static string NoStorageAccountWhenConfiguringAuditingPolicy { /// /// Looks up a localized string similar to PHP Data Objects(PDO) Sample Code:. /// - internal static string PdoTitle { + public static string PdoTitle { get { return ResourceManager.GetString("PdoTitle", resourceCulture); } @@ -261,7 +261,7 @@ internal static string PdoTitle { /// /// Looks up a localized string similar to Error connecting to SQL Server. /// - internal static string PhpConnectionError { + public static string PhpConnectionError { get { return ResourceManager.GetString("PhpConnectionError", resourceCulture); } @@ -270,7 +270,7 @@ internal static string PhpConnectionError { /// /// Looks up a localized string similar to Permanently removing Azure Sql Database '{0}' on server '{1}'.. /// - internal static string RemoveAzureSqlDatabaseDescription { + public static string RemoveAzureSqlDatabaseDescription { get { return ResourceManager.GetString("RemoveAzureSqlDatabaseDescription", resourceCulture); } @@ -279,7 +279,7 @@ internal static string RemoveAzureSqlDatabaseDescription { /// /// Looks up a localized string similar to Permanently removing Azure Sql Database Elastic Pool '{0}' on server '{1}'.. /// - internal static string RemoveAzureSqlDatabaseElasticPoolDescription { + public static string RemoveAzureSqlDatabaseElasticPoolDescription { get { return ResourceManager.GetString("RemoveAzureSqlDatabaseElasticPoolDescription", resourceCulture); } @@ -288,7 +288,7 @@ internal 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}'?. /// - internal static string RemoveAzureSqlDatabaseElasticPoolWarning { + public static string RemoveAzureSqlDatabaseElasticPoolWarning { get { return ResourceManager.GetString("RemoveAzureSqlDatabaseElasticPoolWarning", resourceCulture); } @@ -297,7 +297,7 @@ internal 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}'?. /// - internal static string RemoveAzureSqlDatabaseWarning { + public static string RemoveAzureSqlDatabaseWarning { get { return ResourceManager.GetString("RemoveAzureSqlDatabaseWarning", resourceCulture); } @@ -306,7 +306,7 @@ internal static string RemoveAzureSqlDatabaseWarning { /// /// Looks up a localized string similar to Removing Azure Sql Server Active Directory Administrator on server '{0}'.. /// - internal static string RemoveAzureSqlServerActiveDirectoryAdministratorDescription { + public static string RemoveAzureSqlServerActiveDirectoryAdministratorDescription { get { return ResourceManager.GetString("RemoveAzureSqlServerActiveDirectoryAdministratorDescription", resourceCulture); } @@ -315,7 +315,7 @@ internal static string RemoveAzureSqlServerActiveDirectoryAdministratorDescripti /// /// Looks up a localized string similar to Are you sure you want to remove the Azure Sql Server Active Directory Administrator on server '{0}'?. /// - internal static string RemoveAzureSqlServerActiveDirectoryAdministratorWarning { + public static string RemoveAzureSqlServerActiveDirectoryAdministratorWarning { get { return ResourceManager.GetString("RemoveAzureSqlServerActiveDirectoryAdministratorWarning", resourceCulture); } @@ -324,7 +324,7 @@ internal static string RemoveAzureSqlServerActiveDirectoryAdministratorWarning { /// /// Looks up a localized string similar to Permanently removing Azure Sql Database Server '{0}'.. /// - internal static string RemoveAzureSqlServerDescription { + public static string RemoveAzureSqlServerDescription { get { return ResourceManager.GetString("RemoveAzureSqlServerDescription", resourceCulture); } @@ -333,7 +333,7 @@ internal static string RemoveAzureSqlServerDescription { /// /// Looks up a localized string similar to Permanently removing Firewall Rule '{0}' for Azure Sql Database Server '{1}'.. /// - internal static string RemoveAzureSqlServerFirewallRuleDescription { + public static string RemoveAzureSqlServerFirewallRuleDescription { get { return ResourceManager.GetString("RemoveAzureSqlServerFirewallRuleDescription", resourceCulture); } @@ -342,7 +342,7 @@ internal 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}'?. /// - internal static string RemoveAzureSqlServerFirewallRuleWarning { + public static string RemoveAzureSqlServerFirewallRuleWarning { get { return ResourceManager.GetString("RemoveAzureSqlServerFirewallRuleWarning", resourceCulture); } @@ -351,7 +351,7 @@ internal static string RemoveAzureSqlServerFirewallRuleWarning { /// /// Looks up a localized string similar to Are you sure you want to remove the Azure Sql Database Server '{0}'?. /// - internal static string RemoveAzureSqlServerWarning { + public static string RemoveAzureSqlServerWarning { get { return ResourceManager.GetString("RemoveAzureSqlServerWarning", resourceCulture); } @@ -360,7 +360,7 @@ internal static string RemoveAzureSqlServerWarning { /// /// Looks up a localized string similar to Removing firewall rule "{0}" for Microsoft Azure Sql Database "{1}".. /// - internal static string RemoveDatabaseDataMaskingRuleDescription { + public static string RemoveDatabaseDataMaskingRuleDescription { get { return ResourceManager.GetString("RemoveDatabaseDataMaskingRuleDescription", resourceCulture); } @@ -369,7 +369,7 @@ internal static string RemoveDatabaseDataMaskingRuleDescription { /// /// 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}"?. /// - internal static string RemoveDatabaseDataMaskingRuleWarning { + public static string RemoveDatabaseDataMaskingRuleWarning { get { return ResourceManager.GetString("RemoveDatabaseDataMaskingRuleWarning", resourceCulture); } @@ -378,7 +378,7 @@ internal static string RemoveDatabaseDataMaskingRuleWarning { /// /// Looks up a localized string similar to Firewall Rule with name: '{0}' already exists for server '{1}'.. /// - internal static string ServerFirewallRuleNameExists { + public static string ServerFirewallRuleNameExists { get { return ResourceManager.GetString("ServerFirewallRuleNameExists", resourceCulture); } @@ -387,7 +387,7 @@ internal static string ServerFirewallRuleNameExists { /// /// Looks up a localized string similar to Server with name: '{0}' already exists.. /// - internal static string ServerNameExists { + public static string ServerNameExists { get { return ResourceManager.GetString("ServerNameExists", resourceCulture); } @@ -396,7 +396,7 @@ internal static string ServerNameExists { /// /// Looks up a localized string similar to Request for upgrade of server '{0}' already exists.. /// - internal static string ServerUpgradeExists { + public static string ServerUpgradeExists { get { return ResourceManager.GetString("ServerUpgradeExists", resourceCulture); } @@ -405,7 +405,7 @@ internal static string ServerUpgradeExists { /// /// Looks up a localized string similar to A data masking rule with the id '{0}' does not exist. /// - internal static string SetDataMaskingRuleIdDoesNotExistError { + public static string SetDataMaskingRuleIdDoesNotExistError { get { return ResourceManager.GetString("SetDataMaskingRuleIdDoesNotExistError", resourceCulture); } @@ -414,7 +414,7 @@ internal static string SetDataMaskingRuleIdDoesNotExistError { /// /// Looks up a localized string similar to Confirm. /// - internal static string ShouldProcessCaption { + public static string ShouldProcessCaption { get { return ResourceManager.GetString("ShouldProcessCaption", resourceCulture); } @@ -423,7 +423,7 @@ internal static string ShouldProcessCaption { /// /// Looks up a localized string similar to SQL Server Extension Sample Code:. /// - internal static string sqlSampleTitle { + public static string sqlSampleTitle { get { return ResourceManager.GetString("sqlSampleTitle", resourceCulture); } @@ -432,7 +432,7 @@ internal static string sqlSampleTitle { /// /// Looks up a localized string similar to Azure Sql Database Elastic Pool name is required for this operation. /// - internal static string StandaloneDatabaseActivityNotSupported { + public static string StandaloneDatabaseActivityNotSupported { get { return ResourceManager.GetString("StandaloneDatabaseActivityNotSupported", resourceCulture); } @@ -441,7 +441,7 @@ internal static string StandaloneDatabaseActivityNotSupported { /// /// Looks up a localized string similar to Stopping upgrade for Azure Sql Database Server '{0}'.. /// - internal static string StopAzureSqlServerUpgradeDescription { + public static string StopAzureSqlServerUpgradeDescription { get { return ResourceManager.GetString("StopAzureSqlServerUpgradeDescription", resourceCulture); } @@ -450,7 +450,7 @@ internal 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}'?. /// - internal static string StopAzureSqlServerUpgradeWarning { + public static string StopAzureSqlServerUpgradeWarning { get { return ResourceManager.GetString("StopAzureSqlServerUpgradeWarning", resourceCulture); } @@ -459,7 +459,7 @@ internal 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.. /// - internal static string StorageAccountNotFound { + public static string StorageAccountNotFound { get { return ResourceManager.GetString("StorageAccountNotFound", resourceCulture); } @@ -468,7 +468,7 @@ internal static string StorageAccountNotFound { /// /// Looks up a localized string similar to Cannot use a server's auditing policy before it is configured.. /// - internal static string UseServerWithoutStorageAccount { + public 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 4206ff9e5601..84c7ba1931d0 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx +++ b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx @@ -117,80 +117,95 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - {your_password_here} + + 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-AzureADGroup -SearchString "{0}" - - {your_user_id_here} + + 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-AzureADGroup, or to get a list of Azure Active Directory users use Get-AzureADUser. - - Cannot use the '{0}' option with other event types. + + 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-AzureADUser -SearchString "{0}" - - Cannot set auditing policy without a storage account name. + + Database with name: '{0}' already exists in server '{1}'. - - PHP Data Objects(PDO) Sample Code: + + Auditing cannot be enabled . Upgrade to Basic, Standard or Premium Service Tier to enable auditing on your database(s) - - Error connecting to SQL Server + + A data masking rule for alias '{0}' is already exists - - SQL Server Extension Sample Code: + + Cannot set a lower bound which is larger than the higher bound - - 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. + + The rule {0} does not exist - - Cannot use a server's auditing policy before it is configured. + + A data masking rule for the table '{0}' and column '{1}' already exists - - Removing firewall rule "{0}" for Microsoft Azure Sql Database "{1}". + + The {0} cmdlet is deprecated and will be removed in a future release. - - Are you sure you want to remove the data masking rule "{0}" for Microsoft Azure Sql Database "{1}"? + + Elastic Pool with name: '{0}' already exists in server '{1}'. - - Confirm + + {your_password_here} - - A data masking rule for alias '{0}' is already exists + + {your_user_id_here} - - A data masking rule for the table '{0}' and column '{1}' already exists + + The Active Directory Group '{0}' is not security enabled. Only Azure Active Directory Security Enabled Groups are supported. - - A data masking rule with the id '{0}' already exist + + Cannot use the '{0}' option with other event types. - - A data masking rule with the id '{0}' does not exist + + Please use Set-AzureEnvironment to set a valid GraphEndpoint for the current AzureEnvironment. - - Cannot set a lower bound which is larger than the higher bound + + Cannot use audit table retention without specifying TableIdentifier. You may want to use '{0}'. - - The rule {0} does not exist + + Please set a valid tenant id in the AzureEnvironment. - - Permanently removing Azure Sql Database Server '{0}'. + + A data masking rule with the id '{0}' already exist - - Are you sure you want to remove the Azure Sql Database Server '{0}'? + + Rule Id cannot contain '<,>,+,=,#,*,%,&,\,/,?' and cannot end with a '.' - - Server with name: '{0}' already exists. + + Cannot set auditing policy without a storage account name. - - Database with name: '{0}' already exists in server '{1}'. + + PHP Data Objects(PDO) Sample Code: + + + Error connecting to SQL Server Permanently removing Azure Sql Database '{0}' on server '{1}'. + + Permanently removing Azure Sql Database Elastic Pool '{0}' on server '{1}'. + + + Are you sure you want to remove the Azure Sql Database Elastic Pool '{0}' on server '{1}'? + Are you sure you want to remove the Azure Sql Database '{0}' on server '{1}'? - - Firewall Rule with name: '{0}' already exists for server '{1}'. + + Removing Azure Sql Server Active Directory Administrator on server '{0}'. + + + Are you sure you want to remove the Azure Sql Server Active Directory Administrator on server '{0}'? + + + Permanently removing Azure Sql Database Server '{0}'. Permanently removing Firewall Rule '{0}' for Azure Sql Database Server '{1}'. @@ -198,61 +213,46 @@ Are you sure you want to remove the Firewall Rule '{0}' for Azure Sql Database Server '{1}'? - - Elastic Pool with name: '{0}' already exists in server '{1}'. + + Are you sure you want to remove the Azure Sql Database Server '{0}'? - - Permanently removing Azure Sql Database Elastic Pool '{0}' on server '{1}'. + + Removing firewall rule "{0}" for Microsoft Azure Sql Database "{1}". - - Are you sure you want to remove the Azure Sql Database Elastic Pool '{0}' on server '{1}'? + + Are you sure you want to remove the data masking rule "{0}" for Microsoft Azure Sql Database "{1}"? - - Cannot use audit table retention without specifying TableIdentifier. You may want to use '{0}'. + + Firewall Rule with name: '{0}' already exists for server '{1}'. + + + Server with name: '{0}' already exists. Request for upgrade of server '{0}' already exists. - - Are you sure you want to stop the upgrade for Azure Sql Database Server '{0}'? + + A data masking rule with the id '{0}' does not exist - - Stopping upgrade for Azure Sql Database Server '{0}'. + + Confirm + + + SQL Server Extension Sample Code: Azure Sql Database Elastic Pool name is required for this operation - - The {0} cmdlet is deprecated and will be removed in a future release. - - - Rule Id cannot contain '<,>,+,=,#,*,%,&,\,/,?' and cannot end with a '.' - - - Auditing cannot be enabled . Upgrade to Basic, Standard or Premium Service Tier to enable auditing on your database(s) - - - 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-AzureADGroup -SearchString "{0}" - - - 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-AzureADGroup, or to get a list of Azure Active Directory users use Get-AzureADUser. - - - 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-AzureADUser -SearchString "{0}" - - - Please set a valid tenant id in the AzureEnvironment. - - - Removing Azure Sql Server Active Directory Administrator on server '{0}'. + + Stopping upgrade for Azure Sql Database Server '{0}'. - - Are you sure you want to remove the Azure Sql Server Active Directory Administrator on server '{0}'? + + Are you sure you want to stop the upgrade for Azure Sql Database Server '{0}'? - - The Active Directory Group '{0}' is not security enabled. Only Azure Active Directory Security Enabled Groups are supported. + + 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. - - Please use Set-AzureEnvironment to set a valid GraphEndpoint for the current AzureEnvironment. + + Cannot use a server's auditing policy before it is configured. \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseCopyCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseCopyCmdletBase.cs new file mode 100644 index 000000000000..4ff27232fa6e --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseCopyCmdletBase.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Sql.Common; +using Microsoft.Azure.Commands.Sql.Replication.Model; +using Microsoft.Azure.Commands.Sql.ReplicationLink.Services; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet +{ + public abstract class AzureSqlDatabaseCopyCmdletBase : AzureSqlCmdletBase, AzureSqlDatabaseReplicationAdapter> + { + /// + /// Gets or sets the name of the Azure SQL Server to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = "The name of the Azure SQL Server the database to be copied is in.")] + [ValidateNotNullOrEmpty] + public string ServerName { get; set; } + + /// + /// Initializes the adapter + /// + /// The Azure Subscription + /// A replication Adapter object + protected override AzureSqlDatabaseReplicationAdapter InitModelAdapter(Azure.Common.Authentication.Models.AzureSubscription subscription) + { + return new AzureSqlDatabaseReplicationAdapter(Profile, subscription); + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseSecondaryCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseSecondaryCmdletBase.cs new file mode 100644 index 000000000000..abe21c2c51db --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseSecondaryCmdletBase.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Sql.Common; +using Microsoft.Azure.Commands.Sql.Replication.Model; +using Microsoft.Azure.Commands.Sql.ReplicationLink.Services; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet +{ + public abstract class AzureSqlDatabaseSecondaryCmdletBase : AzureSqlCmdletBase, AzureSqlDatabaseReplicationAdapter> + { + /// + /// Gets or sets the name of the Azure SQL Server to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = "The name of the Azure SQL Server the database to be replicated is in.")] + [ValidateNotNullOrEmpty] + public string ServerName { get; set; } + + /// + /// Initializes the adapter + /// + /// + /// A replication Adapter object + protected override AzureSqlDatabaseReplicationAdapter InitModelAdapter(Azure.Common.Authentication.Models.AzureSubscription subscription) + { + return new AzureSqlDatabaseReplicationAdapter(Profile, subscription); + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/GetAzureSqlDatabaseReplicationLink.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/GetAzureSqlDatabaseReplicationLink.cs new file mode 100644 index 000000000000..9d2bb8aa4c20 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/GetAzureSqlDatabaseReplicationLink.cs @@ -0,0 +1,107 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Sql.Replication.Model; +using System; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet +{ + [Cmdlet(VerbsCommon.Get, "AzureSqlDatabaseReplicationLink", + DefaultParameterSetName = ByDatabaseName, + ConfirmImpact = ConfirmImpact.None)] + public class GetAzureSqlDatabaseReplicationLink : AzureSqlDatabaseSecondaryCmdletBase + { + /// + /// ParameterSet to get all Replication Links for a given Azure SQL Database + /// + internal const string ByDatabaseName = "ByDatabaseName"; + + /// + /// ParameterSet to get a Replication Link by its partner Azure SQL Server Name + /// + internal const string ByPartnerServerName = "ByPartnerServerName"; + + /// + /// Gets or sets the name of the Azure SQL Database to retrieve links for. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = "The name of the Azure SQL Database to retrieve links for.")] + [ValidateNotNullOrEmpty] + public string DatabaseName { get; set; } + + /// + /// Gets or sets the name of the resource group for the partner. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the resource group for the partner.")] + [ValidateNotNullOrEmpty] + public string PartnerResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the Azure SQL Server that has the Azure SQL Database partner. + /// + [Parameter(Mandatory = false, + ParameterSetName = ByPartnerServerName, + ValueFromPipelineByPropertyName = false, + HelpMessage = "The name of the Azure SQL Server that has the Azure SQL Database partner.")] + [ValidateNotNullOrEmpty] + public string PartnerServerName { get; set; } + + /// + /// Get the entities from the service + /// + /// The list of entities + protected override IEnumerable GetEntity() + { + ICollection results; + + if (ParameterSetName == ByPartnerServerName) + { + results = new List(); + results.Add(ModelAdapter.GetLink(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.PartnerResourceGroupName, this.PartnerServerName)); + } + else + { + results = ModelAdapter.ListLinks(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.PartnerResourceGroupName); + } + + return results; + } + + /// + /// No user input to apply to model + /// + /// Model retrieved from service + /// The model that was passed in + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + return model; + } + + /// + /// No changes to persist to Azure SQL Server + /// + /// The output of apply user input to model + /// The input entity + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return entity; + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseCopy.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseCopy.cs new file mode 100644 index 000000000000..6c3d1269dbc6 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseCopy.cs @@ -0,0 +1,162 @@ +// ---------------------------------------------------------------------------------- +// +// 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 Hyak.Common; +using Microsoft.Azure.Commands.Sql.Properties; +using Microsoft.Azure.Commands.Sql.Replication.Model; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet +{ + /// + /// Cmdlet to create a new Azure SQL Database Copy + /// + [Cmdlet(VerbsCommon.New, "AzureSqlDatabaseCopy", + ConfirmImpact = ConfirmImpact.Low)] + public class NewAzureSqlDatabaseCopy : AzureSqlDatabaseCopyCmdletBase + { + /// + /// Gets or sets the name of the database to be copied. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = "The name of the Azure SQL Database to be copied.")] + [ValidateNotNullOrEmpty] + public string DatabaseName { get; set; } + + /// + /// Gets or sets the name of the service objective to assign to the Azure SQL Database copy + /// + [Parameter(Mandatory = false, + HelpMessage = "The name of the service objective to assign to the Azure SQL Database copy.")] + [ValidateNotNullOrEmpty] + public string ServiceObjectiveName { get; set; } + + /// + /// Gets or sets the name of the Elastic Pool to put the database copy in + /// + [Parameter(Mandatory = false, + HelpMessage = "The name of the Elastic Pool to put the database copy in.")] + [ValidateNotNullOrEmpty] + public string ElasticPoolName { get; set; } + + /// + /// Gets or sets the tags associated with the Azure SQL Database Copy + /// + [Parameter(Mandatory = false, + HelpMessage = "The tags to associate with the Azure SQL Database Copy")] + public Dictionary Tags { get; set; } + + /// + /// Gets or sets the name of the resource group of the copy. + /// + [Parameter(Mandatory = false, + HelpMessage = "The name of the resource group of the copy.")] + [ValidateNotNullOrEmpty] + public string CopyResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the Azure SQL Server of the copy. + /// + [Parameter(Mandatory = false, + HelpMessage = "The name of the Azure SQL Server of the copy.")] + [ValidateNotNullOrEmpty] + public string CopyServerName { get; set; } + + /// + /// Gets or sets the name of the source database copy. + /// + [Parameter(Mandatory = true, + HelpMessage = "The name of the Azure SQL Database copy.")] + [ValidateNotNullOrEmpty] + public string CopyDatabaseName { get; set; } + + /// + /// Get the entities from the service + /// + /// The list of entities + protected override IEnumerable GetEntity() + { + string copyResourceGroupName = string.IsNullOrWhiteSpace(this.CopyResourceGroupName) ? this.ResourceGroupName : this.CopyResourceGroupName; + string copyServerName = string.IsNullOrWhiteSpace(this.CopyServerName) ? this.ServerName : this.CopyServerName; + + // We try to get the database. Since this is a create copy, we don't want the copy database to exist + try + { + ModelAdapter.GetDatabase(copyResourceGroupName, copyServerName, this.CopyDatabaseName); + } + catch (CloudException ex) + { + if (ex.Response.StatusCode == System.Net.HttpStatusCode.NotFound) + { + // This is what we want. We looked and there is no database with this name. + return null; + } + + // Unexpected exception encountered + throw; + } + + // The database already exists + throw new PSArgumentException( + string.Format(Resources.DatabaseNameExists, this.CopyDatabaseName, copyServerName), + "CopyDatabaseName"); + } + + /// + /// Create the model from user input + /// + /// Model retrieved from service + /// The model that was passed in + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + string copyResourceGroup = string.IsNullOrWhiteSpace(CopyResourceGroupName) ? ResourceGroupName : CopyResourceGroupName; + string copyServer = string.IsNullOrWhiteSpace(CopyServerName) ? ServerName : CopyServerName; + + string location = ModelAdapter.GetServerLocation(ResourceGroupName, ServerName); + string copyLocation = copyServer.Equals(ServerName) ? location : ModelAdapter.GetServerLocation(copyResourceGroup, copyServer); + List newEntity = new List(); + newEntity.Add(new AzureSqlDatabaseCopyModel() + { + Location = location, + ResourceGroupName = ResourceGroupName, + ServerName = ServerName, + DatabaseName = DatabaseName, + CopyResourceGroupName = copyResourceGroup, + CopyServerName = copyServer, + CopyDatabaseName = CopyDatabaseName, + CopyLocation = copyLocation, + ServiceObjectiveName = ServiceObjectiveName, + ElasticPoolName = ElasticPoolName, + Tags = Tags, + }); + return newEntity; + } + + /// + /// Create the new database copy + /// + /// The output of apply user input to model + /// The input entity + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return new List() { + ModelAdapter.CopyDatabase(entity.First().CopyResourceGroupName, entity.First().CopyServerName, entity.First()) + }; + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseSecondary.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseSecondary.cs new file mode 100644 index 000000000000..8739796a273c --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseSecondary.cs @@ -0,0 +1,154 @@ +// ---------------------------------------------------------------------------------- +// +// 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 Hyak.Common; +using Microsoft.Azure.Commands.Sql.Properties; +using Microsoft.Azure.Commands.Sql.Replication.Model; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet +{ + /// + /// Cmdlet to create a new Azure SQL Database Secondary and Replication Link + /// + [Cmdlet(VerbsCommon.New, "AzureSqlDatabaseSecondary", + ConfirmImpact = ConfirmImpact.Low)] + public class NewAzureSqlDatabaseSecondary : AzureSqlDatabaseSecondaryCmdletBase + { + /// + /// Gets or sets the name of the Azure SQL Database to act as primary. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = "The name of the Azure SQL Database to act as primary.")] + [ValidateNotNullOrEmpty] + public string DatabaseName { get; set; } + + /// + /// Gets or sets the name of the service objective to assign to the secondary. + /// + [Parameter(Mandatory = false, + HelpMessage = "The name of the service objective to assign to the secondary.")] + [ValidateNotNullOrEmpty] + public string SecondaryServiceObjectiveName { get; set; } + + /// + /// Gets or sets the name of the Elastic Pool to put the secondary in. + /// + [Parameter(Mandatory = false, + HelpMessage = "The name of the Elastic Pool to put the secondary in.")] + [ValidateNotNullOrEmpty] + public string SecondaryElasticPoolName { get; set; } + + /// + /// Gets or sets the tags to associate with the Azure SQL Database Replication Link + /// + [Parameter(Mandatory = false, + HelpMessage = "The tags to associate with the Azure SQL Database Replication Link")] + public Dictionary Tags { get; set; } + + /// + /// Gets or sets the name of the resource group of the secondary. + /// + [Parameter(Mandatory = true, + HelpMessage = "The name of the resource group to create secondary in.")] + [ValidateNotNullOrEmpty] + public string PartnerResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the Azure SQL Server of the secondary. + /// + [Parameter(Mandatory = true, + HelpMessage = "The name of the Azure SQL Server to create secondary in.")] + [ValidateNotNullOrEmpty] + public string PartnerServerName { get; set; } + + /// + /// Gets or sets the read intent of the secondary (ReadOnly is not yet supported). + /// + [Parameter(Mandatory = false, + HelpMessage = "The read intent of the secondary (ReadOnly is not yet supported).")] + [ValidateNotNullOrEmpty] + public AllowConnections AllowConnections { get; set; } + + /// + /// Get the entities from the service + /// + /// The list of entities + protected override IEnumerable GetEntity() + { + // We try to get the database. Since this is a create secondary database operation, we don't want the secondary database to already exist + try + { + ModelAdapter.GetDatabase(this.PartnerResourceGroupName, this.PartnerServerName, this.DatabaseName); + } + catch (CloudException ex) + { + if (ex.Response.StatusCode == System.Net.HttpStatusCode.NotFound) + { + // This is what we want. We looked and there is no database with this name. + return null; + } + + // Unexpected exception encountered + throw; + } + + // The database already exists + throw new PSArgumentException( + string.Format(Resources.DatabaseNameExists, this.DatabaseName, this.PartnerServerName), + "DatabaseName"); + } + + /// + /// Create the model from user input + /// + /// Model retrieved from service + /// The model that was passed in + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + string location = ModelAdapter.GetServerLocation(this.PartnerResourceGroupName, this.PartnerServerName); + List newEntity = new List(); + newEntity.Add(new AzureReplicationLinkModel() + { + PartnerLocation = location, + ResourceGroupName = this.ResourceGroupName, + ServerName = this.ServerName, + DatabaseName = this.DatabaseName, + PartnerResourceGroupName = this.PartnerResourceGroupName, + PartnerServerName = this.PartnerServerName, + SecondaryServiceObjectiveName = this.SecondaryServiceObjectiveName, + SecondaryElasticPoolName = this.SecondaryElasticPoolName, + AllowConnections = this.AllowConnections, + Tags = this.Tags, + }); + return newEntity; + } + + /// + /// Create the new secondary and replication link to the primary + /// + /// The output of apply user input to model + /// The input entity + protected override IEnumerable PersistChanges(IEnumerable entity) + { + return new List() { + ModelAdapter.CreateLink(entity.First().PartnerResourceGroupName, entity.First().PartnerServerName, entity.First()) + }; + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/RemoveAzureSqlDatabaseSecondary.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/RemoveAzureSqlDatabaseSecondary.cs new file mode 100644 index 000000000000..d3700a00d4d0 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/RemoveAzureSqlDatabaseSecondary.cs @@ -0,0 +1,89 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Sql.Properties; +using Microsoft.Azure.Commands.Sql.Replication.Model; +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet +{ + [Cmdlet(VerbsCommon.Remove, "AzureSqlDatabaseSecondary", + SupportsShouldProcess = true, + ConfirmImpact = ConfirmImpact.High)] + public class RemoveAzureSqlDatabaseSecondary : AzureSqlDatabaseSecondaryCmdletBase + { + /// + /// Gets or sets the name of the primary Azure SQL Database with the replication link to remove. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = "The name of the Azure SQL Database to remove.")] + [ValidateNotNullOrEmpty] + public string DatabaseName { get; set; } + + /// + /// Gets or sets the name of the partner resource group. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the resource group of the secondary.")] + [ValidateNotNullOrEmpty] + public string PartnerResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the partner Azure SQL Server. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The name of the Azure SQL Server of the secondary.")] + [ValidateNotNullOrEmpty] + public string PartnerServerName { get; set; } + + /// + /// Get the entities from the service + /// + /// The list of entities + protected override IEnumerable GetEntity() + { + return new List() { + ModelAdapter.GetLink(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.PartnerResourceGroupName, this.PartnerServerName) + }; + } + + /// + /// No user input to apply to model + /// + /// Model retrieved from service + /// The model that was passed in + protected override IEnumerable ApplyUserInputToModel(IEnumerable model) + { + return model; + } + + /// + /// No changes to persist to Azure SQL Server + /// + /// The output of apply user input to model + /// The input entity + protected override IEnumerable PersistChanges(IEnumerable entity) + { + ModelAdapter.RemoveLink(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.PartnerResourceGroupName, this.PartnerServerName); + return entity; + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AllowConnections.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AllowConnections.cs new file mode 100644 index 000000000000..8429a96f25ac --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AllowConnections.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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Sql.Replication.Model +{ + /// + /// The allow connections value + /// + public enum AllowConnections + { + /// + /// Offline Secondary + /// + No = 0, + + /// + /// Readable Secondary + /// + All = 1 + } +} + diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureReplicationLinkModel.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureReplicationLinkModel.cs new file mode 100644 index 000000000000..046ebf34e9e6 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureReplicationLinkModel.cs @@ -0,0 +1,85 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Sql.Replication.Model +{ + /// + /// Represents an Azure SQL Database Replication Link + /// + public class AzureReplicationLinkModel : AzureSqlDatabaseReplicationModelBase + { + /// + /// Gets or sets the name of the resource group + /// + public string PartnerResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the Azure SQL Server + /// + public string PartnerServerName { get; set; } + + /// + /// Get or sets the AllowConnections setting for the Replication Link + /// + public AllowConnections AllowConnections { get; set; } + + /// + /// Gets or sets the requested service objective name for the partner + /// + public string SecondaryServiceObjectiveName { get; set; } + + /// + /// Gets or sets the name of the Elastic Pool the partner is in + /// + public string SecondaryElasticPoolName { get; set; } + + /// + /// Gets or sets the id of the replication link + /// + public Guid LinkId { get; set; } + + /// + /// Gets or sets the ReplicationState of the link + /// + public string ReplicationState { get; set; } + + /// + /// Gets or sets the Percent seeding complete + /// + public string PercentComplete { get; set; } + + /// + /// Gets or sets the Role from the partner context + /// + public string PartnerRole { get; set; } + + /// + /// Gets or sets the Role from the context + /// + public string Role { get; set; } + + /// + /// Gets or sets the Role from the partner context + /// + public string StartTime { get; set; } + + /// + /// Gets or sets the location of the partner database + /// + public string PartnerLocation { get; set; } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseCopyModel.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseCopyModel.cs new file mode 100644 index 000000000000..acb37682dff4 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseCopyModel.cs @@ -0,0 +1,60 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Sql.Replication.Model +{ + /// + /// Represents an Azure SQL Database Copy + /// + public class AzureSqlDatabaseCopyModel : AzureSqlDatabaseReplicationModelBase + { + /// + /// Gets or sets the name of the target Resource Group for the copy + /// + public string CopyResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the target Azure SQL Server for the copy + /// + public string CopyServerName { get; set; } + + /// + /// Gets or sets the name of the target Azure SQL Database for the copy + /// + public string CopyDatabaseName { get; set; } + + /// + /// Gets or sets the requested service objective name + /// + public string ServiceObjectiveName { get; set; } + + /// + /// Gets or sets the name of the Elastic Pool the database is in + /// + public string ElasticPoolName { get; set; } + + /// + /// Gets or sets the creation date of the copy + /// + public DateTime CreationDate { get; set; } + + /// + /// Gets or sets the location of the partner database + /// + public string CopyLocation { get; set; } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseReplicationModelBase.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseReplicationModelBase.cs new file mode 100644 index 000000000000..aace33c1b643 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseReplicationModelBase.cs @@ -0,0 +1,55 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Sql.Replication.Model +{ + /// + /// Represents an Azure SQL Database Copy + /// + public class AzureSqlDatabaseReplicationModelBase + { + /// + /// template to generate the Source Database Id + /// + public static string SourceIdTemplate = "/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Sql/Servers/{2}/databases/{3}"; + + /// + /// Gets or sets the name of the resource group + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the Azure SQL Server + /// + public string ServerName { get; set; } + + /// + /// Gets or sets the name of the Azure SQL Database + /// + public string DatabaseName { get; set; } + + /// + /// Gets or sets the location of the Azure SQL Database + /// + public string Location { get; set; } + + /// + /// Gets or sets the tags associated with the Azure SQL Server. + /// + public Dictionary Tags { get; set; } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Model/LinkType.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/LinkType.cs new file mode 100644 index 000000000000..7df99d852330 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/LinkType.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. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Sql.Replication.Model +{ + /// + /// The link types enumeration + /// + public enum LinkType + { + /// + /// NonReadable Offline Secondary + /// + NonReadableSecondary = 0, + + /// + /// Readable Secondary + /// + Secondary = 1 + } +} + diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationAdapter.cs new file mode 100644 index 000000000000..1bf737dd8d22 --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationAdapter.cs @@ -0,0 +1,300 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Sql.Common; +using Microsoft.Azure.Commands.Sql.Database.Model; +using Microsoft.Azure.Commands.Sql.Database.Services; +using Microsoft.Azure.Commands.Sql.ElasticPool.Services; +using Microsoft.Azure.Commands.Sql.Properties; +using Microsoft.Azure.Commands.Sql.Replication.Model; +using Microsoft.Azure.Commands.Sql.Server.Adapter; +using Microsoft.Azure.Commands.Sql.Server.Services; +using Microsoft.Azure.Commands.Sql.Services; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; + +namespace Microsoft.Azure.Commands.Sql.ReplicationLink.Services +{ + /// + /// Adapter for database operations + /// + public class AzureSqlDatabaseReplicationAdapter + { + /// + /// Gets or sets the AzureSqlDatabaseCopyCommunicator which has all the needed management clients + /// + private AzureSqlDatabaseReplicationCommunicator ReplicationCommunicator { get; set; } + + /// + /// Gets or sets the AzureSqlDatabaseCopyCommunicator which has all the needed management clients + /// + private AzureSqlDatabaseCommunicator DatabaseCommunicator { get; set; } + + private AzureSqlServerCommunicator ServerCommunicator { get; set; } + /// + /// Gets or sets the Azure profile + /// + public AzureSMProfile Profile { get; set; } + + /// + /// Gets or sets the Azure Subscription + /// + private AzureSubscription _subscription { get; set; } + + /// + /// Constructs a database adapter + /// + /// The current azure profile + /// The current azure subscription + public AzureSqlDatabaseReplicationAdapter(AzureSMProfile Profile, AzureSubscription subscription) + { + this.Profile = Profile; + this._subscription = subscription; + ReplicationCommunicator = new AzureSqlDatabaseReplicationCommunicator(Profile, subscription); + DatabaseCommunicator = new AzureSqlDatabaseCommunicator(Profile, subscription); + ServerCommunicator = new AzureSqlServerCommunicator(Profile, subscription); + } + + /// + /// Gets the Location of the Azure SQL Server + /// + /// The resource group the Azure SQL Server is in + /// The name of the Azure SQL Server + /// The region hosting the Azure SQL Server + internal string GetServerLocation(string resourceGroupName, string serverName) + { + AzureSqlServerAdapter serverAdapter = new AzureSqlServerAdapter(Profile, _subscription); + var server = serverAdapter.GetServer(resourceGroupName, serverName); + return server.Location; + } + + /// + /// Gets an Azure SQL Database by name + /// + /// The name of the resource group + /// The name of the Azure SQL Server + /// The name of the Azure SQL Database + /// The Azure SQL Database object + internal AzureSqlDatabaseModel GetDatabase(string resourceGroupName, string serverName, string databaseName) + { + var resp = DatabaseCommunicator.Get(resourceGroupName, serverName, databaseName, Util.GenerateTracingId()); + return AzureSqlDatabaseAdapter.CreateDatabaseModelFromResponse(resourceGroupName, serverName, resp); + } + + /// + /// Creates an Azure SQL Database Copy + /// + /// The name of the resource group + /// The name of the Azure SQL Server + /// The input parameters for the create/update operation + /// The Azure SQL Database Copy object + internal AzureSqlDatabaseCopyModel CopyDatabase(string copyResourceGroup, string copyServerName, AzureSqlDatabaseCopyModel model) + { + var resp = ReplicationCommunicator.CreateCopy(copyResourceGroup, copyServerName, model.CopyDatabaseName, Util.GenerateTracingId(), new DatabaseCreateOrUpdateParameters() + { + Location = model.CopyLocation, + Properties = new DatabaseCreateOrUpdateProperties() + { + SourceDatabaseId = string.Format(AzureReplicationLinkModel.SourceIdTemplate, _subscription.Id.ToString(), + model.ResourceGroupName, model.ServerName, model.DatabaseName), + CreateMode = Management.Sql.Models.DatabaseCreateMode.Copy, + ElasticPoolName = model.ElasticPoolName, + RequestedServiceObjectiveName = model.ServiceObjectiveName, + } + }); + + return CreateDatabaseCopyModelFromDatabaseCreateOrUpdateResponse(model.CopyResourceGroupName, model.CopyServerName, model.CopyDatabaseName, + model.ResourceGroupName, model.ServerName, model.DatabaseName, resp); + } + + /// + /// Converts the response from the service to a powershell DatabaseCopy object + /// + /// The copy's resource group name + /// The copy's Azure SQL Server name + /// The copy's database name + /// The source's resource group name + /// The source's Azure SQL Server name + /// The source database name + /// The copy's target elastic pool + /// The copy's nondefault service level objective + /// The database create response + /// A powershell DatabaseCopy object + private AzureSqlDatabaseCopyModel CreateDatabaseCopyModelFromDatabaseCreateOrUpdateResponse(string copyResourceGroupName, string copyServerName, string copyDatabaseName, + string resourceGroupName, string serverName, string databaseName, Management.Sql.Models.DatabaseCreateOrUpdateResponse response) + { + // the response does not contain the majority of the information we wish to expose to the user, so most of the data is passed from the inputs. + AzureSqlDatabaseCopyModel model = new AzureSqlDatabaseCopyModel(); + + model.CopyResourceGroupName = copyResourceGroupName; + model.CopyServerName = copyServerName; + model.CopyDatabaseName = response.Database.Name; + model.ResourceGroupName = resourceGroupName; + model.ServerName = serverName; + model.DatabaseName = databaseName; + model.Location = GetServerLocation(resourceGroupName, serverName); + model.CopyLocation = response.Database.Location; + model.CreationDate = response.Database.Properties.CreationDate; + + return model; + } + + /// + /// Creates an Azure SQL Database Secondary + /// + /// The resource group name of primary database + /// The Azure SQL Server name of primary database + /// The input parameters for the create operation + /// The Azure SQL Database ReplicationLink object + internal AzureReplicationLinkModel CreateLink(string resourceGroupName, string serverName, AzureReplicationLinkModel model) + { + var resp = ReplicationCommunicator.CreateCopy(resourceGroupName, serverName, model.DatabaseName, Util.GenerateTracingId(), new DatabaseCreateOrUpdateParameters() + { + Location = model.PartnerLocation, + Properties = new DatabaseCreateOrUpdateProperties() + { + SourceDatabaseId = string.Format(AzureReplicationLinkModel.SourceIdTemplate, _subscription.Id.ToString(), + model.ResourceGroupName, model.ServerName, model.DatabaseName), + CreateMode = model.AllowConnections.HasFlag(AllowConnections.All) ? Management.Sql.Models.DatabaseCreateMode.Secondary : Management.Sql.Models.DatabaseCreateMode.NonReadableSecondary, + ElasticPoolName = model.SecondaryElasticPoolName, + RequestedServiceObjectiveName = model.SecondaryServiceObjectiveName, + } + }); + + return GetLink(model.ResourceGroupName, model.ServerName, model.DatabaseName, model.PartnerResourceGroupName, model.PartnerServerName); + } + + /// + /// Gets the Secondary Link by linkId + /// + /// The resource group name of primary database + /// The Azure SQL Server name of primary database + /// The name of primary database + /// The resource group name of secondary database + /// The linkId of the replication link to the secondary + /// The Azure SQL Database ReplicationLink object + internal AzureReplicationLinkModel GetLink(string resourceGroupName, string serverName, string databaseName, + string partnerResourceGroupName, Guid linkId) + { + // partnerResourceGroupName is required because it is not exposed in any reponse from the service. + + var resp = ReplicationCommunicator.GetLink(resourceGroupName, serverName, databaseName, linkId, Util.GenerateTracingId()); + + return CreateReplicationLinkModelFromReplicationLinkResponse(resourceGroupName, serverName, databaseName, partnerResourceGroupName, resp); + } + + /// + /// Lists Azure SQL Database Secondaries for the specified primary for the specified partner resource group + /// + /// The resource group name of primary database + /// The Azure SQL Server name of primary database + /// The name of primary database + /// The resource group name of secondary database + /// The collection of Azure SQL Database ReplicationLink objects for the primary + internal ICollection ListLinks(string resourceGroupName, string serverName, string databaseName, + string partnerResourceGroupName) + { + CheckPartnerResourceGroupValid(partnerResourceGroupName); + + var resp = ReplicationCommunicator.ListLinks(resourceGroupName, serverName, databaseName, Util.GenerateTracingId()); + + return resp.Select((link) => + { + return CreateReplicationLinkModelFromReplicationLinkResponse(resourceGroupName, serverName, databaseName, partnerResourceGroupName, link); + }).ToList(); + } + + private void CheckPartnerResourceGroupValid(string partnerResourceGroupName) + { + // checking if the resource group is valid as a partner resource group + ServerCommunicator.List(partnerResourceGroupName, Util.GenerateTracingId()); + } + + /// + /// Converts the response from the service to a powershell Secondary Link object + /// + /// The resource group name of primary database + /// The Azure SQL Server name of primary database + /// The name of primary database + /// The resource group name of secondary database + /// The linkId of the replication link to the secondary + /// The replication link response + /// The Azure SQL Database ReplicationLink object + private AzureReplicationLinkModel CreateReplicationLinkModelFromReplicationLinkResponse(string resourceGroupName, + string serverName, string databaseName, string partnerResourceGroupName, Management.Sql.Models.ReplicationLink resp) + { + // partnerResourceGroupName is required because it is not exposed in any reponse from the service. + // AllowConnections.ReadOnly is not yet supported + AllowConnections allowConnections = (resp.Properties.Role.Equals(Management.Sql.Models.DatabaseCreateMode.Secondary) + || resp.Properties.PartnerRole.Equals(Management.Sql.Models.DatabaseCreateMode.Secondary)) ? AllowConnections.All : AllowConnections.No; + + AzureReplicationLinkModel model = new AzureReplicationLinkModel(); + + model.LinkId = new Guid(resp.Name); + model.PartnerResourceGroupName = partnerResourceGroupName; + model.PartnerServerName = resp.Properties.PartnerServer; + model.ResourceGroupName = resourceGroupName; + model.ServerName = serverName; + model.DatabaseName = databaseName; + model.AllowConnections = allowConnections; + model.Location = resp.Location; + model.PartnerLocation = resp.Properties.PartnerLocation; + model.PercentComplete = resp.Properties.PercentComplete; + model.ReplicationState = resp.Properties.ReplicationState; + model.PartnerRole = resp.Properties.PartnerRole; + model.Role = resp.Properties.Role; + model.StartTime = resp.Properties.StartTime.ToString(); + + return model; + } + + /// + /// Gets the Secondary Link by the secondary resource group and Azure SQL Server + /// + /// The resource group name of primary database + /// The Azure SQL Server name of primary database + /// The name of primary database + /// The resource group name of secondary database + /// The Azure SQL Server name of secondary database + /// The Azure SQL Database ReplicationLink object + internal AzureReplicationLinkModel GetLink(string resourceGroupName, string serverName, string databaseName, + string partnerResourceGroupName, string partnerServerName) + { + IList links = ListLinks(resourceGroupName, serverName, databaseName, partnerResourceGroupName).ToList(); + + // Resource Management executes in context of the Secondary + return links.FirstOrDefault(l => l.PartnerServerName == partnerServerName); + } + + /// + /// Finds and removes the Secondary Link by the secondary resource group and Azure SQL Server + /// + /// The resource group name of primary database + /// The Azure SQL Server name of primary database + /// The name of primary database + /// The resource group name of secondary database + /// The Azure SQL Server name of secondary database + internal void RemoveLink(string resourceGroupName, string serverName, string databaseName, string partnerResourceGroupName, string partnerServerName) + { + AzureReplicationLinkModel link = GetLink(resourceGroupName, serverName, databaseName, partnerResourceGroupName, partnerServerName); + + ReplicationCommunicator.RemoveLink(link.ResourceGroupName, link.ServerName, link.DatabaseName, link.LinkId, Util.GenerateTracingId()); + } + } +} diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationCommunicator.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationCommunicator.cs new file mode 100644 index 000000000000..35c888a7c53a --- /dev/null +++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationCommunicator.cs @@ -0,0 +1,111 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Sql.Common; +using Microsoft.Azure.Common.Authentication; +using Microsoft.Azure.Common.Authentication.Models; +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using Microsoft.WindowsAzure.Management.Storage; +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Sql.ReplicationLink.Services +{ + /// + /// This class is responsible for all the REST communication with the audit REST endpoints + /// + public class AzureSqlDatabaseReplicationCommunicator + { + /// + /// The Sql client to be used by this end points communicator + /// + private static SqlManagementClient SqlClient { get; set; } + + /// + /// Gets or set the Azure subscription + /// + private static AzureSubscription Subscription { get; set; } + + /// + /// Gets or sets the Azure profile + /// + public AzureSMProfile Profile { get; set; } + + /// + /// Creates a communicator for Azure SQL Databases + /// + /// + /// + public AzureSqlDatabaseReplicationCommunicator(AzureSMProfile profile, AzureSubscription subscription) + { + Profile = profile; + if (subscription != Subscription) + { + Subscription = subscription; + SqlClient = null; + } + } + + /// + /// Gets the Azure SQL Database + /// + public Management.Sql.Models.ReplicationLink GetLink(string resourceGroupName, string serverName, string databaseName, Guid linkId, string clientRequestId) + { + return GetCurrentSqlClient(clientRequestId).DatabaseReplicationLinks.Get(resourceGroupName, serverName, databaseName, linkId.ToString()).ReplicationLink; + } + + /// + /// Lists Azure SQL Databases + /// + public IList ListLinks(string resourceGroupName, string serverName, string databaseName, string clientRequestId) + { + return GetCurrentSqlClient(clientRequestId).DatabaseReplicationLinks.List(resourceGroupName, serverName, databaseName).ReplicationLinks; + } + + /// + /// Creates a copy of a Azure SQL Database + /// + public Management.Sql.Models.DatabaseCreateOrUpdateResponse CreateCopy(string resourceGroupName, string serverName, string databaseName, string clientRequestId, DatabaseCreateOrUpdateParameters parameters) + { + return GetCurrentSqlClient(clientRequestId).Databases.CreateOrUpdate(resourceGroupName, serverName, databaseName, parameters); + } + + /// + /// Deletes a Replication Link + /// + public void RemoveLink(string resourceGroupName, string serverName, string databaseName, Guid linkId, string clientRequestId) + { + GetCurrentSqlClient(clientRequestId).DatabaseReplicationLinks.Delete(resourceGroupName, serverName, databaseName, linkId.ToString()); + } + + /// + /// Retrieve the SQL Management client for the currently selected subscription, adding the session and request + /// id tracing headers for the current cmdlet invocation. + /// + /// The SQL Management client for the currently selected subscription. + private SqlManagementClient GetCurrentSqlClient(String clientRequestId) + { + // Get the SQL management client for the current subscription + if (SqlClient == null) + { + SqlClient = AzureSession.ClientFactory.CreateClient(Profile, Subscription, AzureEnvironment.Endpoint.ResourceManager); + } + SqlClient.HttpClient.DefaultRequestHeaders.Remove(Constants.ClientRequestIdHeaderName); + SqlClient.HttpClient.DefaultRequestHeaders.Add(Constants.ClientRequestIdHeaderName, clientRequestId); + return SqlClient; + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Secure Connection/Model/ConnectionStrings.cs b/src/ResourceManager/Sql/Commands.Sql/Secure Connection/Model/ConnectionStrings.cs index 6b25e99f0395..03c106b77609 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Secure Connection/Model/ConnectionStrings.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Secure Connection/Model/ConnectionStrings.cs @@ -56,11 +56,11 @@ public ConnectionStrings(string proxyDnsName, string port, string serverName, st /// private string ConstructPhpConnectionString(string proxyDnsName, string port, string serverName, string databaseName) { - string enterUser = Resources.EnterUserId; - string enterPassword = Resources.EnterPassword; - string pdoTitle = Resources.PdoTitle; - string sqlServerSampleTitle = Resources.sqlSampleTitle; - string connectionError = Resources.PhpConnectionError; + string enterUser = Microsoft.Azure.Commands.Sql.Properties.Resources.EnterUserId; + string enterPassword = Microsoft.Azure.Commands.Sql.Properties.Resources.EnterPassword; + string pdoTitle = Microsoft.Azure.Commands.Sql.Properties.Resources.PdoTitle; + string sqlServerSampleTitle = Microsoft.Azure.Commands.Sql.Properties.Resources.sqlSampleTitle; + string connectionError = Microsoft.Azure.Commands.Sql.Properties.Resources.PhpConnectionError; StringBuilder sb = new StringBuilder(); sb.Append(string.Format("Server: {0}, {1}", proxyDnsName, port)).Append(Environment.NewLine); sb.Append(string.Format("SQL Database: {0}", databaseName)).Append(Environment.NewLine); @@ -88,8 +88,8 @@ private string ConstructPhpConnectionString(string proxyDnsName, string port, st /// private string ConstructOdbcConnectionString(string proxyDnsName, string port, string serverName, string databaseName) { - string enterUser = Resources.EnterUserId; - string enterPassword = Resources.EnterPassword; + string enterUser = Microsoft.Azure.Commands.Sql.Properties.Resources.EnterUserId; + string enterPassword = Microsoft.Azure.Commands.Sql.Properties.Resources.EnterPassword; StringBuilder sb = new StringBuilder(); sb.Append("Driver={SQL Server Native Client 11.0};"); sb.Append(string.Format("Server=tcp:{0},{1};", proxyDnsName, port)); @@ -105,8 +105,8 @@ private string ConstructOdbcConnectionString(string proxyDnsName, string port, s /// private string ConstructJdbcConnectionString(string proxyDnsName, string port, string serverName, string databaseName) { - string enterUser = Resources.EnterUserId; - string enterPassword = Resources.EnterPassword; + string enterUser = Microsoft.Azure.Commands.Sql.Properties.Resources.EnterUserId; + string enterPassword = Microsoft.Azure.Commands.Sql.Properties.Resources.EnterPassword; return string.Format("jdbc:sqlserver://{0}:{1};database={2};user={3}@{4};password={5};encrypt=true;hostNameInCertificate=*.database.secure.windows.net;loginTimeout=30;", proxyDnsName, port, databaseName, enterUser, serverName, enterPassword); } @@ -116,8 +116,8 @@ private string ConstructJdbcConnectionString(string proxyDnsName, string port, s /// private string ConstructAdoNetConnectionString(string proxyDnsName, string port, string serverName, string databaseName) { - string enterUser = Resources.EnterUserId; - string enterPassword = Resources.EnterPassword; + string enterUser = Microsoft.Azure.Commands.Sql.Properties.Resources.EnterUserId; + string enterPassword = Microsoft.Azure.Commands.Sql.Properties.Resources.EnterPassword; return string.Format("Server=tcp:{0},{1};Database={2};User ID={3}@{4};Password={5};Trusted_Connection=False;Encrypt=True;Connection Timeout=30", proxyDnsName, port, databaseName, enterUser, serverName, enterPassword); } diff --git a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/NewAzureSqlServer.cs b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/NewAzureSqlServer.cs index 515a6624f7af..783c1fc7a650 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/NewAzureSqlServer.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/NewAzureSqlServer.cs @@ -90,7 +90,7 @@ public class NewAzureSqlServer : AzureSqlServerCmdletBase // The server already exists throw new PSArgumentException( - string.Format(Resources.ServerNameExists, this.ServerName), + string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.ServerNameExists, this.ServerName), "ServerName"); } diff --git a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/RemoveAzureSqlServer.cs b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/RemoveAzureSqlServer.cs index 6b3d3e39cfc9..6cabfb39d883 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/RemoveAzureSqlServer.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/RemoveAzureSqlServer.cs @@ -81,9 +81,9 @@ public class RemoveAzureSqlServer : AzureSqlServerCmdletBase public override void ExecuteCmdlet() { if (!Force.IsPresent && !ShouldProcess( - string.Format(CultureInfo.InvariantCulture, Resources.RemoveAzureSqlServerDescription, this.ServerName), - string.Format(CultureInfo.InvariantCulture, Resources.RemoveAzureSqlServerWarning, this.ServerName), - Resources.ShouldProcessCaption)) + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveAzureSqlServerDescription, this.ServerName), + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveAzureSqlServerWarning, this.ServerName), + Microsoft.Azure.Commands.Sql.Properties.Resources.ShouldProcessCaption)) { return; } diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Cmdlet/RemoveAzureSqlServerActiveDirectoryAdministrator.cs b/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Cmdlet/RemoveAzureSqlServerActiveDirectoryAdministrator.cs index 8fe7b29b198b..b93248553da0 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Cmdlet/RemoveAzureSqlServerActiveDirectoryAdministrator.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Cmdlet/RemoveAzureSqlServerActiveDirectoryAdministrator.cs @@ -69,9 +69,9 @@ protected override IEnumerable public override void ExecuteCmdlet() { if (!Force.IsPresent && !ShouldProcess( - string.Format(CultureInfo.InvariantCulture, Resources.RemoveAzureSqlServerActiveDirectoryAdministratorDescription, this.ServerName), - string.Format(CultureInfo.InvariantCulture, Resources.RemoveAzureSqlServerActiveDirectoryAdministratorWarning, this.ServerName), - Resources.ShouldProcessCaption)) + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveAzureSqlServerActiveDirectoryAdministratorDescription, this.ServerName), + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.RemoveAzureSqlServerActiveDirectoryAdministratorWarning, this.ServerName), + Microsoft.Azure.Commands.Sql.Properties.Resources.ShouldProcessCaption)) { return; } diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs index 1b39df9700d5..5dfd226e830a 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerActiveDirectoryAdministrator/Services/AzureSqlServerActiveDirectoryAdministratorAdapter.cs @@ -1,4 +1,5 @@ -// ---------------------------------------------------------------------------------- +extern alias MicrosoftAzureCommandsResources; +// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,8 +13,6 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -extern alias MicrosoftAzureCommandsResources; - using System; using System.Collections.Generic; using System.Globalization; @@ -26,8 +25,8 @@ using Microsoft.Azure.Common.Authentication.Models; using Microsoft.Azure.Management.Sql; using Microsoft.Azure.Management.Sql.Models; -using MicrosoftAzureCommandsResourcesModelsActiveDirectory = MicrosoftAzureCommandsResources::Microsoft.Azure.Commands.Resources.Models.ActiveDirectory; using Microsoft.Azure.Common.Authentication; +using MicrosoftAzureCommandsResources::Microsoft.Azure.Commands.Resources.Models.ActiveDirectory; namespace Microsoft.Azure.Commands.Sql.ServerActiveDirectoryAdministrator.Services { @@ -54,23 +53,23 @@ public class AzureSqlServerActiveDirectoryAdministratorAdapter /// /// A private instance of ActiveDirectoryClient /// - private MicrosoftAzureCommandsResourcesModelsActiveDirectory.ActiveDirectoryClient _activeDirectoryClient; + private ActiveDirectoryClient _activeDirectoryClient; /// /// Gets or sets the Azure ActiveDirectoryClient instance /// - public MicrosoftAzureCommandsResourcesModelsActiveDirectory.ActiveDirectoryClient ActiveDirectoryClient + public ActiveDirectoryClient ActiveDirectoryClient { get { if (_activeDirectoryClient == null) { - _activeDirectoryClient = new MicrosoftAzureCommandsResourcesModelsActiveDirectory.ActiveDirectoryClient(Profile.DefaultContext); + _activeDirectoryClient = new ActiveDirectoryClient(Profile.DefaultContext); if (!Profile.DefaultContext.Environment.IsEndpointSet(AzureEnvironment.Endpoint.Graph)) { - throw new ArgumentException(string.Format(Resources.InvalidGraphEndpoint)); + throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidGraphEndpoint)); } - _activeDirectoryClient = new MicrosoftAzureCommandsResourcesModelsActiveDirectory.ActiveDirectoryClient(Profile.DefaultContext); + _activeDirectoryClient = new ActiveDirectoryClient(Profile.DefaultContext); } return this._activeDirectoryClient; } @@ -176,9 +175,9 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat Guid tenantId = GetTenantId(); // Check for a Azure Active Directory group. Recommended to always use group. - IEnumerable groupList = null; + IEnumerable groupList = null; - var filter = new MicrosoftAzureCommandsResourcesModelsActiveDirectory.ADObjectFilterOptions() + var filter = new ADObjectFilterOptions() { Id = (objectId != null && objectId != Guid.Empty) ? objectId.ToString() : null, SearchString = displayName, @@ -191,7 +190,7 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat if (groupList.Count() > 1) { // More than one group was found with that display name. - throw new ArgumentException(string.Format(Resources.ADGroupMoreThanOneFound, displayName)); + throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.ADGroupMoreThanOneFound, displayName)); } else if (groupList.Count() == 1) { @@ -201,7 +200,7 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat // Only support Security Groups if (group.SecurityEnabled.HasValue && !group.SecurityEnabled.Value) { - throw new ArgumentException(string.Format(Resources.InvalidADGroupNotSecurity, displayName)); + throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidADGroupNotSecurity, displayName)); } return new ServerAdministratorCreateOrUpdateProperties() @@ -213,7 +212,7 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat } // No group was found. Check for a user - filter = new MicrosoftAzureCommandsResourcesModelsActiveDirectory.ADObjectFilterOptions() + filter = new ADObjectFilterOptions() { Id = (objectId != null && objectId != Guid.Empty) ? objectId.ToString() : null, SearchString = displayName, @@ -227,7 +226,7 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat if (userList == null || userList.Count() == 0) { // Check if the display name is the UPN - filter = new MicrosoftAzureCommandsResourcesModelsActiveDirectory.ADObjectFilterOptions() + filter = new ADObjectFilterOptions() { Id = (objectId != null && objectId != Guid.Empty) ? objectId.ToString() : null, UPN = displayName, @@ -240,12 +239,12 @@ protected ServerAdministratorCreateOrUpdateProperties GetActiveDirectoryInformat // No user was found if (userList == null || userList.Count() == 0) { - throw new ArgumentException(string.Format(Resources.ADObjectNotFound, displayName)); + throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.ADObjectNotFound, displayName)); } else if (userList.Count() > 1) { // More than one user was found. - throw new ArgumentException(string.Format(Resources.ADUserMoreThanOneFound, displayName)); + throw new ArgumentException(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.ADUserMoreThanOneFound, displayName)); } else { @@ -276,7 +275,7 @@ protected Guid GetTenantId() if (string.IsNullOrWhiteSpace(tenantIdStr) || !Guid.TryParse(tenantIdStr, out tenantIdGuid)) { - throw new InvalidOperationException(Resources.InvalidTenantId); + throw new InvalidOperationException(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidTenantId); } return tenantIdGuid; diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StartAzureSqlServerUpgrade.cs b/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StartAzureSqlServerUpgrade.cs index dd6b2c5becf2..890511be2347 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StartAzureSqlServerUpgrade.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StartAzureSqlServerUpgrade.cs @@ -71,7 +71,7 @@ public class StartAzureSqlServerUpgrade : AzureSqlServerUpgradeCmdletBase PersistChanges(IEnumerable entity) { if (!Force.IsPresent && !ShouldProcess( - string.Format(CultureInfo.InvariantCulture, Resources.StopAzureSqlServerUpgradeDescription, this.ServerName), - string.Format(CultureInfo.InvariantCulture, Resources.StopAzureSqlServerUpgradeWarning, this.ServerName), - Resources.ShouldProcessCaption)) + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.StopAzureSqlServerUpgradeDescription, this.ServerName), + string.Format(CultureInfo.InvariantCulture, Microsoft.Azure.Commands.Sql.Properties.Resources.StopAzureSqlServerUpgradeWarning, this.ServerName), + Microsoft.Azure.Commands.Sql.Properties.Resources.ShouldProcessCaption)) { return null; } diff --git a/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs b/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs index e31d8fa6233d..12b136075026 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs @@ -78,11 +78,11 @@ internal static string[] ProcessAuditEvents(string[] eventTypes) { if (eventTypes.Contains(SecurityConstants.All)) { - throw new Exception(string.Format(Resources.InvalidEventTypeSet, SecurityConstants.All)); + throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidEventTypeSet, SecurityConstants.All)); } if (eventTypes.Contains(SecurityConstants.None)) { - throw new Exception(string.Format(Resources.InvalidEventTypeSet, SecurityConstants.None)); + throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidEventTypeSet, SecurityConstants.None)); } } return eventTypes; 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 456b80cbd1a0..9b23aa9390b3 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics.Test/Commands.StreamAnalytics.Test.csproj @@ -166,22 +166,18 @@ - - {c1bda476-a5cc-4394-914d-48b0ec31a710} - Commands.ScenarioTests.Common - {65c3a86a-716d-4e7d-ab67-1db00b3bf72d} Commands.Common.Storage - - {3b48a77b-5956-4a62-9081-92ba04b02b27} - Commands.Common.Test - {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common + + {c1bda476-a5cc-4394-914d-48b0ec31a710} + Commands.ScenarioTests.Common + {bc420543-c04e-4bf3-96e1-cd81b823bdd7} Commands.Test.Utilities diff --git a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj index f9ce2e0bdfaf..17abe1f6dc60 100644 --- a/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj +++ b/src/ResourceManager/StreamAnalytics/Commands.StreamAnalytics/Commands.StreamAnalytics.csproj @@ -132,20 +132,6 @@ - - - {65c3a86a-716d-4e7d-ab67-1db00b3bf72d} - Commands.Common.Storage - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - - - {c60342b1-47d3-4a0e-8081-9b97ce60b7af} - Commands.Profile - - @@ -217,6 +203,12 @@ Designer + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + diff --git a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj index 10dca401db0d..40638e69db5d 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj +++ b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj @@ -121,20 +121,6 @@ - - - {65c3a86a-716d-4e7d-ab67-1db00b3bf72d} - Commands.Common.Storage - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - - - {c60342b1-47d3-4a0e-8081-9b97ce60b7af} - Commands.Profile - - PreserveNewest @@ -170,6 +156,12 @@ + + + {3819d8a7-c62c-4c47-8ddd-0332d9ce1252} + Commands.ResourceManager.Common + + diff --git a/src/ResourceManager/Tags/Commands.Tags/Model/TagBaseCmdlet.cs b/src/ResourceManager/Tags/Commands.Tags/Model/TagBaseCmdlet.cs index 294647f50589..fa466ad253c3 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Model/TagBaseCmdlet.cs +++ b/src/ResourceManager/Tags/Commands.Tags/Model/TagBaseCmdlet.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Microsoft.Azure.Commands.ResourceManager.Common; namespace Microsoft.Azure.Commands.Tags.Model { - public abstract class TagBaseCmdlet : AzureSMCmdlet + public abstract class TagBaseCmdlet : AzureRMCmdlet { private TagsClient tagsClient; @@ -26,7 +26,7 @@ public TagsClient TagsClient { if (tagsClient == null) { - tagsClient = new TagsClient(Profile, Profile.DefaultContext.Subscription) + tagsClient = new TagsClient(DefaultContext) { VerboseLogger = WriteVerboseWithTimestamp, ErrorLogger = WriteErrorWithTimestamp diff --git a/src/ResourceManager/Tags/Commands.Tags/Model/TagsClient.cs b/src/ResourceManager/Tags/Commands.Tags/Model/TagsClient.cs index 0e3c5ad2e863..3c9d66e3c0ad 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Model/TagsClient.cs +++ b/src/ResourceManager/Tags/Commands.Tags/Model/TagsClient.cs @@ -36,11 +36,11 @@ public class TagsClient public Action ErrorLogger { get; set; } /// - /// Creates new TagsClient + /// Creates new tags client instance. /// - /// Subscription containing resources to manipulate - public TagsClient(AzureSMProfile profile, AzureSubscription subscription) - : this(AzureSession.ClientFactory.CreateClient(profile, subscription, AzureEnvironment.Endpoint.ResourceManager)) + /// The Azure context instance + public TagsClient(AzureContext context) + : this(AzureSession.ClientFactory.CreateClient(context, AzureEnvironment.Endpoint.ResourceManager)) { } diff --git a/src/ResourceManager/Tags/Commands.Tags/Properties/AssemblyInfo.cs b/src/ResourceManager/Tags/Commands.Tags/Properties/AssemblyInfo.cs index 0271e56caa08..62532602486c 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Properties/AssemblyInfo.cs +++ b/src/ResourceManager/Tags/Commands.Tags/Properties/AssemblyInfo.cs @@ -17,7 +17,7 @@ using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -[assembly: AssemblyTitle("Microsoft Azure Powershell - Resource Manager")] +[assembly: AssemblyTitle("Microsoft Azure Powershell - Tags")] [assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)] [assembly: AssemblyProduct(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyProduct)] [assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] @@ -25,8 +25,8 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("e386b843-f3f0-4db3-8664-37d16b860dde")] -[assembly: AssemblyVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyVersion)] -[assembly: AssemblyFileVersion(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyFileVersion)] +[assembly: AssemblyVersion("0.9.8")] +[assembly: AssemblyFileVersion("0.9.8")] #if SIGN [assembly: InternalsVisibleTo("Microsoft.Azure.Commands.Resources.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")] #else diff --git a/src/ResourceManager/Tags/Commands.Tags/Tag/GetAzureTagCommand.cs b/src/ResourceManager/Tags/Commands.Tags/Tag/GetAzureTagCommand.cs index c490a8be3b00..16ad968dd4e8 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Tag/GetAzureTagCommand.cs +++ b/src/ResourceManager/Tags/Commands.Tags/Tag/GetAzureTagCommand.cs @@ -31,7 +31,7 @@ public class GetAzureTagCommand : TagBaseCmdlet [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Whether should get the tag values information as well.")] public SwitchParameter Detailed { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { List tags = string.IsNullOrEmpty(Name) ? TagsClient.ListTags() : new List() { TagsClient.GetTag(Name) }; if (tags != null && tags.Count > 0) diff --git a/src/ResourceManager/Tags/Commands.Tags/Tag/NewAzureTagCommand.cs b/src/ResourceManager/Tags/Commands.Tags/Tag/NewAzureTagCommand.cs index 5b53f5d04040..8ca15ca93656 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Tag/NewAzureTagCommand.cs +++ b/src/ResourceManager/Tags/Commands.Tags/Tag/NewAzureTagCommand.cs @@ -32,7 +32,7 @@ public class NewAzureTagCommand : TagBaseCmdlet [ValidateNotNullOrEmpty] public string Value { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { WriteObject(TagsClient.CreateTag(Name, Value != null ? new List { Value } : null)); } diff --git a/src/ResourceManager/Tags/Commands.Tags/Tag/RemoveAzureTagCommand.cs b/src/ResourceManager/Tags/Commands.Tags/Tag/RemoveAzureTagCommand.cs index 2657532cf777..db965ea67770 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Tag/RemoveAzureTagCommand.cs +++ b/src/ResourceManager/Tags/Commands.Tags/Tag/RemoveAzureTagCommand.cs @@ -39,7 +39,7 @@ public class RemoveAzureTagCommand : TagBaseCmdlet [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Return object if specified.")] public SwitchParameter PassThru { get; set; } - public override void ExecuteCmdlet() + protected override void ProcessRecord() { PSTag tag = null; diff --git a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj index 579de4c2aa1d..0454d1230873 100644 --- a/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj +++ b/src/ResourceManager/TrafficManager/Commands.TrafficManager2.Test/Commands.TrafficManager2.Test.csproj @@ -141,7 +141,7 @@ Commands.Common - {C1BDA476-A5CC-4394-914D-48B0EC31A710} + {c1bda476-a5cc-4394-914d-48b0ec31a710} Commands.ScenarioTests.Common 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 a65aef790773..e68528855b35 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj +++ b/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj @@ -151,10 +151,6 @@ - - {3b48a77b-5956-4a62-9081-92ba04b02b27} - Commands.Common.Test - {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common diff --git a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj index 08b945d7ed1e..555aea287676 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj +++ b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj @@ -164,12 +164,6 @@ - - - {5ee72c53-1720-4309-b54b-5fb79703195f} - Commands.Common - - Designer @@ -191,7 +185,12 @@ Designer - + + + {5ee72c53-1720-4309-b54b-5fb79703195f} + Commands.Common + + 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 1e6abe638252..ef85b3b12091 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/Commands.Automation.Test.csproj @@ -174,6 +174,10 @@ {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common + + {c1bda476-a5cc-4394-914d-48b0ec31a710} + Commands.ScenarioTests.Common + {47cd7e95-5330-4384-abce-2c267c57085c} Commands.Automation diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationAccountTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationAccountTest.cs index 06dfca9ef977..7f3614a6cd43 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationAccountTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationAccountTest.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationAccountTest : TestBase + public class GetAzureAutomationAccountTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCertificateTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCertificateTest.cs index 68afb85340b7..3b11505b5699 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCertificateTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCertificateTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationCertificateTest : TestBase + public class GetAzureAutomationCertificateTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationConnectionTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationConnectionTest.cs index c5bd75412e38..e98d5519d8fd 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationConnectionTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationConnectionTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationConnectionTest : TestBase + public class GetAzureAutomationConnectionTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCredentialTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCredentialTest.cs index 58e74779d4b8..721c5636cbeb 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCredentialTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationCredentialTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationCredentialTest : TestBase + public class GetAzureAutomationCredentialTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationJobTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationJobTest.cs index 2749e38c3435..28578826391b 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationJobTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationJobTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationJobTest : TestBase + public class GetAzureAutomationJobTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationModuleTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationModuleTest.cs index 6ae958261467..3820a665251b 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationModuleTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationModuleTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationModuleTest : TestBase + public class GetAzureAutomationModuleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookDefinitionTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookDefinitionTest.cs index 315ca0831544..d3bc9b88b619 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookDefinitionTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookDefinitionTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationRunbookDefinitionTest : TestBase + public class GetAzureAutomationRunbookDefinitionTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookTest.cs index 426336c124a3..12073b91a0d9 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationRunbookTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationRunbookTest : TestBase + public class GetAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduleTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduleTest.cs index 4e7590938add..322042c3af0a 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduleTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduleTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationScheduleTest : TestBase + public class GetAzureAutomationScheduleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduledRunbookTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduledRunbookTest.cs index a4e1fb3092d6..cbcbde30bf31 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduledRunbookTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationScheduledRunbookTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationScheduledRunbookTest : TestBase + public class GetAzureAutomationScheduledRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationVariableTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationVariableTest.cs index 66acc3b7e7a3..e2f298de2430 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationVariableTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/GetAzureAutomationVariableTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class GetAzureAutomationVariableTest : TestBase + public class GetAzureAutomationVariableTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationAccountTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationAccountTest.cs index 27d819afef70..a0fb61352ae9 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationAccountTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationAccountTest.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationAccountTest : TestBase + public class NewAzureAutomationAccountTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCertificateTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCertificateTest.cs index 82d10aa6c4f1..147daea3af8f 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCertificateTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCertificateTest.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationCertificateTest : TestBase + public class NewAzureAutomationCertificateTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationConnectionTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationConnectionTest.cs index 47ee34070811..699bfe223e24 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationConnectionTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationConnectionTest.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationConnectionTest : TestBase + public class NewAzureAutomationConnectionTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCredentialTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCredentialTest.cs index b36ba048387a..f566391a3a3c 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCredentialTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationCredentialTest.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationCredentialTest : TestBase + public class NewAzureAutomationCredentialTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationModuleTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationModuleTest.cs index 86b9e7257e67..997e74d7ed38 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationModuleTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationModuleTest.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationModuleTest : TestBase + public class NewAzureAutomationModuleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationRunbookTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationRunbookTest.cs index ad9ca1f468d2..56e0eea79300 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationRunbookTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationRunbookTest.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationRunbookTest : TestBase + public class NewAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationScheduleTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationScheduleTest.cs index 09aee79f20ed..1feeb517b35b 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationScheduleTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationScheduleTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationScheduleTest : TestBase + public class NewAzureAutomationScheduleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationVariableTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationVariableTest.cs index fb389a1ba048..f2526a9c6558 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationVariableTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/NewAzureAutomationVariableTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class NewAzureAutomationVariableTest : TestBase + public class NewAzureAutomationVariableTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/PublishAzureAutomationRunbookTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/PublishAzureAutomationRunbookTest.cs index 744ee65ecc56..387cf68cb033 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/PublishAzureAutomationRunbookTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/PublishAzureAutomationRunbookTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class PublishAzureAutomationRunbookTest : TestBase + public class PublishAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RegisterAzureAutomationScheduledRunbookTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RegisterAzureAutomationScheduledRunbookTest.cs index 07de5225281e..c12cf5d40536 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RegisterAzureAutomationScheduledRunbookTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RegisterAzureAutomationScheduledRunbookTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class RegisterAzureAutomationScheduledJobTest : TestBase + public class RegisterAzureAutomationScheduledJobTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationAccountTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationAccountTest.cs index 92fb5988a77a..a954a14cb8d9 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationAccountTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationAccountTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationAccountTest : TestBase + public class RemoveAzureAutomationAccountTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationCertificateTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationCertificateTest.cs index 39836e917d9e..0ae342d2a998 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationCertificateTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationCertificateTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationCertificateTest : TestBase + public class RemoveAzureAutomationCertificateTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationConnectionTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationConnectionTest.cs index 5c9749629d35..76dab48c7dc7 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationConnectionTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationConnectionTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationConnectionTest : TestBase + public class RemoveAzureAutomationConnectionTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationModuleTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationModuleTest.cs index 3c5e593edb73..14693f267877 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationModuleTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationModuleTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationModuleTest : TestBase + public class RemoveAzureAutomationModuleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationRunbookTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationRunbookTest.cs index 1d0442047500..ec5b342cc917 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationRunbookTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationRunbookTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationRunbookTest : TestBase + public class RemoveAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationScheduleTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationScheduleTest.cs index f68ba4b9084c..9a2831027477 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationScheduleTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationScheduleTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationScheduleTest : TestBase + public class RemoveAzureAutomationScheduleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationVariableTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationVariableTest.cs index 89f4ea97f004..0dc5250fb703 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationVariableTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/RemoveAzureAutomationVariableTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class RemoveAzureAutomationVariableTest : TestBase + public class RemoveAzureAutomationVariableTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/ResumeAzureAutomationJobTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/ResumeAzureAutomationJobTest.cs index 0956d9232e0c..da3112422da7 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/ResumeAzureAutomationJobTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/ResumeAzureAutomationJobTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class ResumeAzureAutomationJobTest : TestBase + public class ResumeAzureAutomationJobTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationCredentialTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationCredentialTest.cs index f07136bd71a0..43d920d06a38 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationCredentialTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationCredentialTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class SetAzureAutomationCredentialTest : TestBase + public class SetAzureAutomationCredentialTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookDefinitionTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookDefinitionTest.cs index e428ec638686..7445d8365ed5 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookDefinitionTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookDefinitionTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class SetAzureAutomationRunbookDefinitionTest : TestBase + public class SetAzureAutomationRunbookDefinitionTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookTest.cs index 8a3dbc8b729b..7121eb40d154 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationRunbookTest.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class SetAzureAutomationRunbookTest : TestBase + public class SetAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationScheduleTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationScheduleTest.cs index 0cb30be3bb58..109a89ddbe13 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationScheduleTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SetAzureAutomationScheduleTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class SetAzureAutomationScheduleTest : TestBase + public class SetAzureAutomationScheduleTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/StartAzureAutomationRunbookTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/StartAzureAutomationRunbookTest.cs index 5af9b5a902a9..f7690752b32e 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/StartAzureAutomationRunbookTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/StartAzureAutomationRunbookTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class StartAzureAutomationRunbookTest : TestBase + public class StartAzureAutomationRunbookTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/StopAzureAutomationJobTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/StopAzureAutomationJobTest.cs index 77e7a036fc37..78fded88e60e 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/StopAzureAutomationJobTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/StopAzureAutomationJobTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class StopAzureAutomationJobTest : TestBase + public class StopAzureAutomationJobTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SuspendAzureAutomationJobTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SuspendAzureAutomationJobTest.cs index 31d1cefde21f..7d34e6068ab1 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SuspendAzureAutomationJobTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/SuspendAzureAutomationJobTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class SuspendAzureAutomationJobTest : TestBase + public class SuspendAzureAutomationJobTest : SMTestBase { private Mock mockAutomationClient; diff --git a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/UnregisterAzureAutomationScheduledRunbookTest.cs b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/UnregisterAzureAutomationScheduledRunbookTest.cs index 849979cd5604..e8e8806784a3 100644 --- a/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/UnregisterAzureAutomationScheduledRunbookTest.cs +++ b/src/ServiceManagement/Automation/Commands.Automation.Test/UnitTests/UnregisterAzureAutomationScheduledRunbookTest.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Automation.Test.UnitTests { [TestClass] - public class UnregisterAzureAutomationScheduledRunbookTest : TestBase + public class UnregisterAzureAutomationScheduledRunbookTest : SMTestBase { private Mock mockAutomationClient; 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 071ab5404592..2f15ee264bd7 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/Commands.ServiceManagement.Test.csproj @@ -612,6 +612,10 @@ {c60342b1-47d3-4a0e-8081-9b97ce60b7af} Commands.Profile + + {c1bda476-a5cc-4394-914d-48b0ec31a710} + Commands.ScenarioTests.Common + {40fee0bb-fd45-4efc-85bc-0d602a6892c4} Commands.ServiceManagement.Network diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/UnitTests/Cmdlets/IaaS/Extensions/VirtualMachineExtensionImageFactoryTests.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/UnitTests/Cmdlets/IaaS/Extensions/VirtualMachineExtensionImageFactoryTests.cs index ff1700b6bb78..2bd450b815c3 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/UnitTests/Cmdlets/IaaS/Extensions/VirtualMachineExtensionImageFactoryTests.cs +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Test/UnitTests/Cmdlets/IaaS/Extensions/VirtualMachineExtensionImageFactoryTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Test.UnitTests.Cmdlets.IaaS.Extensions { [TestClass] - public class VirtualMachineExtensionImageFactoryTests : TestBase + public class VirtualMachineExtensionImageFactoryTests : SMTestBase { private const string nonExistingPublisherName = "nonExistingPublisherName"; private const string nonExistingExtensionName = "nonExistingExtensionName"; 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 6a5a6d2ad03e..83ef3d381dcb 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj @@ -43,7 +43,8 @@ false - + + False ..\..\..\packages\BouncyCastle.1.7.0\lib\Net40-Client\BouncyCastle.Crypto.dll @@ -71,23 +72,22 @@ ..\..\..\packages\Microsoft.Azure.Test.HttpRecorder.1.0.5715.36130-prerelease\lib\net45\Microsoft.Azure.Test.HttpRecorder.dll True - - False - ..\..\..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll + + ..\..\..\packages\Microsoft.Data.Edm.5.6.0\lib\net40\Microsoft.Data.Edm.dll - - False - ..\..\..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll + + ..\..\..\packages\Microsoft.Data.OData.5.6.0\lib\net40\Microsoft.Data.OData.dll - - False - ..\..\..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll + + ..\..\..\packages\Microsoft.Data.Services.Client.5.6.0\lib\net40\Microsoft.Data.Services.Client.dll - - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.Hadoop.Client.dll + + False + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.Hadoop.Client.dll - - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll + + False + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll False @@ -122,20 +122,25 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll + + False + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll - - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll + + False + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll - - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll + + False + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll - - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll + + False + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll - - ..\..\..\packages\WindowsAzure.Storage.5.0.0\lib\net40\Microsoft.WindowsAzure.Storage.dll + + False + ..\..\..\packages\WindowsAzure.Storage.3.0.3.0\lib\net40\Microsoft.WindowsAzure.Storage.dll ..\..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll @@ -160,9 +165,8 @@ - - False - ..\..\..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll + + ..\..\..\packages\System.Spatial.5.6.0\lib\net40\System.Spatial.dll diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config index f565f9e401ba..1644676722e9 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config @@ -11,22 +11,22 @@ - - - - + + + + - + - - + + - \ No newline at end of file + diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHDInsightCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHDInsightCmdlet.cs index c9e0f56870a0..db4c68235f99 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHDInsightCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AzureHDInsightCmdlet.cs @@ -145,7 +145,7 @@ protected AzureSubscription GetCurrentSubscription(string Subscription, X509Cert { #if DEBUG // we need this for the tests to mock out the current subscription. - if (this.HasCurrentSubscription) + if (Profile.DefaultContext.Subscription != null) { return this.Profile.DefaultContext.Subscription; } diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj b/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj index c13e8da8bde3..ab37e1ac04f1 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/HDInsight.csproj @@ -71,25 +71,22 @@ False ..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.7-preview\lib\net40\Microsoft.Azure.ResourceManager.dll - - False - ..\..\..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll + + ..\..\..\packages\Microsoft.Data.Edm.5.6.0\lib\net40\Microsoft.Data.Edm.dll - - False - ..\..\..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll + + ..\..\..\packages\Microsoft.Data.OData.5.6.0\lib\net40\Microsoft.Data.OData.dll - - False - ..\..\..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll + + ..\..\..\packages\Microsoft.Data.Services.Client.5.6.0\lib\net40\Microsoft.Data.Services.Client.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.Hadoop.Client.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.Hadoop.Client.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll @@ -124,25 +121,25 @@ False ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll - + False - ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll + ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll - + False - ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll + ..\..\..\packages\Microsoft.Hadoop.Client.1.5.10\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll - + False - ..\..\..\packages\WindowsAzure.Storage.5.0.0\lib\net40\Microsoft.WindowsAzure.Storage.dll + ..\..\..\packages\WindowsAzure.Storage.3.0.3.0\lib\net40\Microsoft.WindowsAzure.Storage.dll False @@ -163,9 +160,8 @@ ..\..\..\packages\Microsoft.Net.Http.2.2.28\lib\net45\System.Net.Http.Primitives.dll - - False - ..\..\..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll + + ..\..\..\packages\System.Spatial.5.6.0\lib\net40\System.Spatial.dll diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config index 8f2b6911affb..e5225e28917f 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config @@ -9,18 +9,18 @@ - - - - + + + + - + - - + + diff --git a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteAppClient.cs b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteAppClient.cs index 9db14847cccd..5a68ccfc786a 100644 --- a/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteAppClient.cs +++ b/src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Common/RemoteAppClient.cs @@ -37,7 +37,7 @@ public override string SubscriptionId } } - public abstract class RemoteAppClientTest : TestBase + public abstract class RemoteAppClientTest : SMTestBase { protected const string subscriptionId = "foo"; 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 c9e4abc2db0a..5ace972731d2 100644 --- a/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj +++ b/src/ServiceManagement/Services/Commands.Test.Utilities/Commands.Test.Utilities.csproj @@ -155,6 +155,10 @@ + + {3b48a77b-5956-4a62-9081-92ba04b02b27} + Commands.Common.Test + {c1bda476-a5cc-4394-914d-48b0ec31a710} Commands.ScenarioTests.Common @@ -167,10 +171,6 @@ {4900ec4e-8deb-4412-9108-0bc52f81d457} Commands.Utilities - - {3b48a77b-5956-4a62-9081-92ba04b02b27} - Commands.Common.Test - {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common diff --git a/src/ServiceManagement/Services/Commands.Test.Utilities/Common/FileSystemHelper.cs b/src/ServiceManagement/Services/Commands.Test.Utilities/Common/FileSystemHelper.cs index c029220a48d2..1e9e2f94ec32 100644 --- a/src/ServiceManagement/Services/Commands.Test.Utilities/Common/FileSystemHelper.cs +++ b/src/ServiceManagement/Services/Commands.Test.Utilities/Common/FileSystemHelper.cs @@ -44,7 +44,7 @@ public class FileSystemHelper : IDisposable /// Gets a reference to the test class using the FileSystemHelper to /// provide access to its logging. /// - public TestBase TestInstance { get; private set; } + public SMTestBase TestInstance { get; private set; } /// /// Monitors changes to the file system. @@ -93,7 +93,7 @@ public bool EnableMonitoring /// /// Reference to the test class (to access its logging). /// - public FileSystemHelper(TestBase testInstance) + public FileSystemHelper(SMTestBase testInstance) : this(testInstance, GetTemporaryDirectoryName()) { } @@ -105,7 +105,7 @@ public FileSystemHelper(TestBase testInstance) /// Reference to the test class (to access its logging). /// /// The rootPath directory. - public FileSystemHelper(TestBase testInstance, string rootPath) + public FileSystemHelper(SMTestBase testInstance, string rootPath) { Debug.Assert(testInstance != null); Debug.Assert(!string.IsNullOrEmpty(rootPath)); diff --git a/src/ServiceManagement/Services/Commands.Test.Utilities/Websites/WebsitesTestBase.cs b/src/ServiceManagement/Services/Commands.Test.Utilities/Websites/WebsitesTestBase.cs index 20b02e9c1179..09d0d906525e 100644 --- a/src/ServiceManagement/Services/Commands.Test.Utilities/Websites/WebsitesTestBase.cs +++ b/src/ServiceManagement/Services/Commands.Test.Utilities/Websites/WebsitesTestBase.cs @@ -24,10 +24,9 @@ namespace Microsoft.WindowsAzure.Commands.Test.Utilities.Websites { [TestClass] - public class WebsitesTestBase : TestBase + public class WebsitesTestBase : SMTestBase { protected string subscriptionId = "035B9E16-BA8E-40A3-BEEA-4998F452C203"; - protected AzureSMProfile currentProfile; [TestInitialize] public virtual void SetupTest() diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/DisableAzureRemoteDesktopCommandTest.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/DisableAzureRemoteDesktopCommandTest.cs index 81a82d41bb44..fa26a2a2dea0 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/DisableAzureRemoteDesktopCommandTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/DisableAzureRemoteDesktopCommandTest.cs @@ -31,7 +31,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development /// /// Basic unit tests for the Enable-Enable-AzureServiceProjectRemoteDesktop command. /// - public class DisableAzureRemoteDesktopCommandTest : TestBase + public class DisableAzureRemoteDesktopCommandTest : SMTestBase { private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/EnableAzureRemoteDesktopCommandTest.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/EnableAzureRemoteDesktopCommandTest.cs index 17e0d7ae96bc..d4d4b7674f85 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/EnableAzureRemoteDesktopCommandTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/EnableAzureRemoteDesktopCommandTest.cs @@ -34,7 +34,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development /// /// Basic unit tests for the Enable-AzureServiceProjectRemoteDesktop enableRDCmdlet. /// - public class EnableAzureRemoteDesktopCommandTest : TestBase + public class EnableAzureRemoteDesktopCommandTest : SMTestBase { static private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/GetAzureServiceProjectRuntimesTest.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/GetAzureServiceProjectRuntimesTest.cs index 23f72a9285fc..2f6300323744 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/GetAzureServiceProjectRuntimesTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/GetAzureServiceProjectRuntimesTest.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Tests.Cmdlet { - public class GetAzureServiceProjectRuntimesTests : TestBase + public class GetAzureServiceProjectRuntimesTests : SMTestBase { private const string serviceName = "AzureService"; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SaveAzureServiceProjectPackageTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SaveAzureServiceProjectPackageTests.cs index 2cd50620e9b0..7802f1b702df 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SaveAzureServiceProjectPackageTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SaveAzureServiceProjectPackageTests.cs @@ -32,7 +32,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development /// /// Basic unit tests for the Enable-AzureServiceProjectRemoteDesktop enableRDCmdlet. /// - internal class SaveAzureServiceProjectPackageCommandTest : TestBase + internal class SaveAzureServiceProjectPackageCommandTest : SMTestBase { static private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureNodeWebRoleTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureNodeWebRoleTests.cs index bb1cc6880f8e..12b4564de1bc 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureNodeWebRoleTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureNodeWebRoleTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Scaffolding { - public class AddAzureNodeWebRoleTests : TestBase + public class AddAzureNodeWebRoleTests : SMTestBase { private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureNodeWorkerRoleTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureNodeWorkerRoleTests.cs index 03a53d63fd45..ca38febc165c 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureNodeWorkerRoleTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureNodeWorkerRoleTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Scaffolding { - public class AddAzureNodeWorkerRoleTests : TestBase + public class AddAzureNodeWorkerRoleTests : SMTestBase { private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzurePHPWebRoleTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzurePHPWebRoleTests.cs index a2e38dd16ff4..90c3861b6df9 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzurePHPWebRoleTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzurePHPWebRoleTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Scaffolding { - public class AddAzurePHPWebRoleTests : TestBase + public class AddAzurePHPWebRoleTests : SMTestBase { private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzurePHPWorkerRoleTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzurePHPWorkerRoleTests.cs index 785c24518c67..37f825865cc1 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzurePHPWorkerRoleTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzurePHPWorkerRoleTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Scaffolding { - public class AddAzurePHPWorkerRoleTests : TestBase + public class AddAzurePHPWorkerRoleTests : SMTestBase { private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureWebRoleTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureWebRoleTests.cs index 6ecb184c7a4b..c24e8d09229f 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureWebRoleTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureWebRoleTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Scaffolding { - public class AddAzureWebRoleTests : TestBase + public class AddAzureWebRoleTests : SMTestBase { private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureWorkerRoleTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureWorkerRoleTests.cs index 0eb86113eade..5af03241a0d6 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureWorkerRoleTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/AddAzureWorkerRoleTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Scaffolding { - public class AddAzureWorkerRoleTests : TestBase + public class AddAzureWorkerRoleTests : SMTestBase { private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/NewAzureRoleTemplateTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/NewAzureRoleTemplateTests.cs index ab41d9235272..f5bb67e0fefe 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/NewAzureRoleTemplateTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/NewAzureRoleTemplateTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Scaffolding { - public class NewAzureRoleTemplateTests : TestBase + public class NewAzureRoleTemplateTests : SMTestBase { private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/NewAzureServiceTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/NewAzureServiceTests.cs index 2726bd92f7ed..ed6ae655a507 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/NewAzureServiceTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/Scaffolding/NewAzureServiceTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Scaffolding.Cmdlet { - public class NewAzureServiceTests : TestBase + public class NewAzureServiceTests : SMTestBase { NewAzureServiceProjectCommand cmdlet; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureInstancesTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureInstancesTests.cs index 401fb056d6b7..9b52d6cf59a3 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureInstancesTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureInstancesTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Tests.Cmdlet { - public class SetAzureInstancesTests : TestBase + public class SetAzureInstancesTests : SMTestBase { private const string serviceName = "AzureService"; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureRuntimeTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureRuntimeTests.cs index 2bee2b8e168f..39b0775cf592 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureRuntimeTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureRuntimeTests.cs @@ -25,7 +25,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Tests.Cmdlet { - public class SetAzureRuntimeTests : TestBase + public class SetAzureRuntimeTests : SMTestBase { private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureServiceProjectTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureServiceProjectTests.cs index e70bb4871c83..e64b75a4b701 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureServiceProjectTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureServiceProjectTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Tests.Cmdlet { - public class SetAzureServiceProjectTests : TestBase + public class SetAzureServiceProjectTests : SMTestBase { private MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureVMSizeTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureVMSizeTests.cs index 42053effcbfe..ada6b2631378 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureVMSizeTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Development/SetAzureVMSizeTests.cs @@ -25,7 +25,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Development.Tests.Cmdlet { - public class SetAzureVMSizeTests : TestBase + public class SetAzureVMSizeTests : SMTestBase { private const string serviceName = "AzureService"; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/PublishAzureServiceProjectTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/PublishAzureServiceProjectTests.cs index a720982a0a8e..fc07c3ca1352 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/PublishAzureServiceProjectTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/PublishAzureServiceProjectTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService { - public class PublishAzureServiceTests : TestBase + public class PublishAzureServiceTests : SMTestBase { private Mock clientMock; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/RemoveAzureServiceTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/RemoveAzureServiceTests.cs index 899e4c72bb8d..b781de022864 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/RemoveAzureServiceTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/RemoveAzureServiceTests.cs @@ -22,7 +22,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService { - public class RemoveAzureServiceTests : TestBase + public class RemoveAzureServiceTests : SMTestBase { private Mock clientMock; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/StartAzureServiceTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/StartAzureServiceTests.cs index 4f8de960061d..d4b4462d4b0c 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/StartAzureServiceTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/StartAzureServiceTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService { - public class StartAzureServiceTests : TestBase + public class StartAzureServiceTests : SMTestBase { private const string serviceName = "AzureService"; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/StopAzureServiceTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/StopAzureServiceTests.cs index 5076a8abc753..3560ed20721e 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/StopAzureServiceTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/StopAzureServiceTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService { - public class StopAzureServiceTests : TestBase + public class StopAzureServiceTests : SMTestBase { private const string serviceName = "AzureService"; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/TestAzureNameTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/TestAzureNameTests.cs index 12aa908cf21b..481f00783c6a 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/TestAzureNameTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/TestAzureNameTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService { - public class TestAzureNameTests : TestBase + public class TestAzureNameTests : SMTestBase { private Mock cloudServiceClientMock; private Mock websitesClientMock; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/AzureServiceTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/AzureServiceTests.cs index c7ac3db77681..efe34f84501d 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/AzureServiceTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/AzureServiceTests.cs @@ -31,7 +31,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Utilities { - public class AzureServiceTests: TestBase + public class AzureServiceTests: SMTestBase { private const string serviceName = "AzureService"; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CloudServiceClientTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CloudServiceClientTests.cs index 6b58b5f266cf..64ee165d9b13 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CloudServiceClientTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CloudServiceClientTests.cs @@ -38,7 +38,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Utilities { - public class CloudServiceClientTests : TestBase + public class CloudServiceClientTests : SMTestBase { private AzureSubscription subscription; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CsPackTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CsPackTests.cs index 3e8cbf986d9d..891c55446fd7 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CsPackTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CsPackTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Utilities { - internal class CsPackTests : TestBase + internal class CsPackTests : SMTestBase { private const string serviceName = "AzureService"; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CsRunTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CsRunTests.cs index 30eee0e7fee1..33540e2ff2dd 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CsRunTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/CsRunTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Utilities { - public class CsRunTests : TestBase + public class CsRunTests : SMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/GeneralTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/GeneralTests.cs index 9293aa116f64..b1933af02838 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/GeneralTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/GeneralTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Utilities { - public class GeneralTests : TestBase + public class GeneralTests : SMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/PublishContextTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/PublishContextTests.cs index 6d74a0b5f183..cdb277b2467e 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/PublishContextTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/PublishContextTests.cs @@ -30,7 +30,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Utilities { - public class PublishContextTests : TestBase, IDisposable + public class PublishContextTests : SMTestBase, IDisposable { private static AzureServiceWrapper service; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ScaffoldTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ScaffoldTests.cs index fa49274bd6bc..584eb9d23ed5 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ScaffoldTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ScaffoldTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Utilities { - public class ScaffoldTests : TestBase + public class ScaffoldTests : SMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ServiceComponentsTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ServiceComponentsTests.cs index 53e558f1d59c..d3c346738733 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ServiceComponentsTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ServiceComponentsTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Utilities { - public class ServiceComponentsTests : TestBase, IDisposable + public class ServiceComponentsTests : SMTestBase, IDisposable { private const string serviceName = "NodeService"; diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ServiceSettingsTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ServiceSettingsTests.cs index 63e99d94a497..1d21ebc0c280 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ServiceSettingsTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/ServiceSettingsTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Utilities { - public class ServiceSettingsTests : TestBase + public class ServiceSettingsTests : SMTestBase { public ServiceSettingsTests() { diff --git a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/StorageEmulatorTests.cs b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/StorageEmulatorTests.cs index f3fdaa7daf79..ed148b979b56 100644 --- a/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/StorageEmulatorTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/CloudService/Utilities/StorageEmulatorTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.CloudService.Utilities { - public class StorageEmulatorTests : TestBase + public class StorageEmulatorTests : SMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ServiceManagement/Services/Commands.Test/Environment/AddAzureEnvironmentTests.cs b/src/ServiceManagement/Services/Commands.Test/Environment/AddAzureEnvironmentTests.cs index b9b698d9a0d7..847c6dbf89ee 100644 --- a/src/ServiceManagement/Services/Commands.Test/Environment/AddAzureEnvironmentTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/Environment/AddAzureEnvironmentTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.Environment { - public class AddAzureEnvironmentTests : TestBase, IDisposable + public class AddAzureEnvironmentTests : SMTestBase, IDisposable { private MemoryDataStore dataStore; diff --git a/src/ServiceManagement/Services/Commands.Test/Environment/GetAzureEnvironmentTests.cs b/src/ServiceManagement/Services/Commands.Test/Environment/GetAzureEnvironmentTests.cs index daa5c393efe7..a100d8bdde74 100644 --- a/src/ServiceManagement/Services/Commands.Test/Environment/GetAzureEnvironmentTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/Environment/GetAzureEnvironmentTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.Environment { - public class GetAzureEnvironmentTests : TestBase + public class GetAzureEnvironmentTests : SMTestBase { private MemoryDataStore dataStore; diff --git a/src/ServiceManagement/Services/Commands.Test/Environment/RemoveAzureEnvironmentTests.cs b/src/ServiceManagement/Services/Commands.Test/Environment/RemoveAzureEnvironmentTests.cs index 4dd664edf61a..ce42c1b2a47f 100644 --- a/src/ServiceManagement/Services/Commands.Test/Environment/RemoveAzureEnvironmentTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/Environment/RemoveAzureEnvironmentTests.cs @@ -29,7 +29,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.Environment { - public class RemoveAzureEnvironmentTests : TestBase, IDisposable + public class RemoveAzureEnvironmentTests : SMTestBase, IDisposable { private MemoryDataStore dataStore; diff --git a/src/ServiceManagement/Services/Commands.Test/Environment/SetAzureEnvironmentTests.cs b/src/ServiceManagement/Services/Commands.Test/Environment/SetAzureEnvironmentTests.cs index 91deb5c3e979..fd03415daa23 100644 --- a/src/ServiceManagement/Services/Commands.Test/Environment/SetAzureEnvironmentTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/Environment/SetAzureEnvironmentTests.cs @@ -32,7 +32,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.Environment { - public class SetAzureEnvironmentTests : TestBase, IDisposable + public class SetAzureEnvironmentTests : SMTestBase, IDisposable { private MemoryDataStore dataStore; diff --git a/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureBgpPeeringTests.cs b/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureBgpPeeringTests.cs index 92c8171d367f..d21d6fa1c352 100644 --- a/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureBgpPeeringTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureBgpPeeringTests.cs @@ -30,7 +30,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.ExpressRoute { - public class AzureBgpPeeringTests : TestBase + public class AzureBgpPeeringTests : SMTestBase { private const string SubscriptionId = "foo"; diff --git a/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitLinkTests.cs b/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitLinkTests.cs index eed2ed04403c..ada6a2c849e1 100644 --- a/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitLinkTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitLinkTests.cs @@ -32,7 +32,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.ExpressRoute { - public class AzureDedicatedCircuitLinkTests : TestBase + public class AzureDedicatedCircuitLinkTests : SMTestBase { private const string SubscriptionId = "foo"; diff --git a/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitServiceProviderTests.cs b/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitServiceProviderTests.cs index 9d22c1806753..ed7acff2b89a 100644 --- a/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitServiceProviderTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitServiceProviderTests.cs @@ -32,7 +32,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.ExpressRoute { - public class AzureDedicatedCircuitServiceProviderTests : TestBase + public class AzureDedicatedCircuitServiceProviderTests : SMTestBase { private const string SubscriptionId = "foo"; diff --git a/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitTests.cs b/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitTests.cs index 658ff104a39a..a552010535a8 100644 --- a/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/ExpressRoute/AzureDedicatedCircuitTests.cs @@ -33,7 +33,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.ExpressRoute { - public class AzureDedicatedCircuitTests : TestBase + public class AzureDedicatedCircuitTests : SMTestBase { private const string SubscriptionId = "foo"; diff --git a/src/ServiceManagement/Services/Commands.Test/MediaServices/GetAzureMediaServicesTests.cs b/src/ServiceManagement/Services/Commands.Test/MediaServices/GetAzureMediaServicesTests.cs index d8febfb1a7b3..7291975b37f7 100644 --- a/src/ServiceManagement/Services/Commands.Test/MediaServices/GetAzureMediaServicesTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/MediaServices/GetAzureMediaServicesTests.cs @@ -32,7 +32,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.MediaServices { - public class GetAzureMediaServicesTests : TestBase + public class GetAzureMediaServicesTests : SMTestBase { protected string SubscriptionId = "DE8C2681-0BCD-47DB-A8A6-A103D2D4A1B9"; diff --git a/src/ServiceManagement/Services/Commands.Test/MediaServices/NewAzureMediaServicesKeyTest.cs b/src/ServiceManagement/Services/Commands.Test/MediaServices/NewAzureMediaServicesKeyTest.cs index 6cbaa9acf61e..828f1a629b3d 100644 --- a/src/ServiceManagement/Services/Commands.Test/MediaServices/NewAzureMediaServicesKeyTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/MediaServices/NewAzureMediaServicesKeyTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.MediaServices { - public class RegenerateMediaServicesAccountTests : TestBase + public class RegenerateMediaServicesAccountTests : SMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ServiceManagement/Services/Commands.Test/MediaServices/NewMediaServicesAccountTests.cs b/src/ServiceManagement/Services/Commands.Test/MediaServices/NewMediaServicesAccountTests.cs index 8715ada9306b..21226af10748 100644 --- a/src/ServiceManagement/Services/Commands.Test/MediaServices/NewMediaServicesAccountTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/MediaServices/NewMediaServicesAccountTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.MediaServices { - public class NewMediaServicesAccountTests : TestBase + public class NewMediaServicesAccountTests : SMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ServiceManagement/Services/Commands.Test/MediaServices/RemoveMediaServicesAccountTests.cs b/src/ServiceManagement/Services/Commands.Test/MediaServices/RemoveMediaServicesAccountTests.cs index 902253898e9c..38085b8ff9ad 100644 --- a/src/ServiceManagement/Services/Commands.Test/MediaServices/RemoveMediaServicesAccountTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/MediaServices/RemoveMediaServicesAccountTests.cs @@ -25,7 +25,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.MediaServices { - public class RemoveMediaServicesAccountTests : TestBase + public class RemoveMediaServicesAccountTests : SMTestBase { [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ServiceManagement/Services/Commands.Test/ServiceBus/GetAzureSBLocationTest.cs b/src/ServiceManagement/Services/Commands.Test/ServiceBus/GetAzureSBLocationTest.cs index 50e39f160e8d..0970fd608c4d 100644 --- a/src/ServiceManagement/Services/Commands.Test/ServiceBus/GetAzureSBLocationTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/ServiceBus/GetAzureSBLocationTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.ServiceBus { - public class GetAzureSBLocationTests : TestBase + public class GetAzureSBLocationTests : SMTestBase { public GetAzureSBLocationTests() { diff --git a/src/ServiceManagement/Services/Commands.Test/ServiceBus/GetAzureSBNamespaceTest.cs b/src/ServiceManagement/Services/Commands.Test/ServiceBus/GetAzureSBNamespaceTest.cs index dd3f8d09929c..716011486e47 100644 --- a/src/ServiceManagement/Services/Commands.Test/ServiceBus/GetAzureSBNamespaceTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/ServiceBus/GetAzureSBNamespaceTest.cs @@ -29,7 +29,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.ServiceBus { - public class GetAzureSBNamespaceTests : TestBase + public class GetAzureSBNamespaceTests : SMTestBase { Mock client; MockCommandRuntime mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/ServiceBus/NewAzureSBNamespaceTest.cs b/src/ServiceManagement/Services/Commands.Test/ServiceBus/NewAzureSBNamespaceTest.cs index bdabb0dcb7da..c6f61bb7b53b 100644 --- a/src/ServiceManagement/Services/Commands.Test/ServiceBus/NewAzureSBNamespaceTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/ServiceBus/NewAzureSBNamespaceTest.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.ServiceBus { - public class NewAzureSBNamespaceTests : TestBase + public class NewAzureSBNamespaceTests : SMTestBase { public NewAzureSBNamespaceTests() { diff --git a/src/ServiceManagement/Services/Commands.Test/ServiceBus/RemoveAzureSBNamespaceTest.cs b/src/ServiceManagement/Services/Commands.Test/ServiceBus/RemoveAzureSBNamespaceTest.cs index 848c2e3a78b8..59f59455c3f7 100644 --- a/src/ServiceManagement/Services/Commands.Test/ServiceBus/RemoveAzureSBNamespaceTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/ServiceBus/RemoveAzureSBNamespaceTest.cs @@ -23,7 +23,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.ServiceBus { - public class RemoveAzureSBNamespaceTests : TestBase + public class RemoveAzureSBNamespaceTests : SMTestBase { public RemoveAzureSBNamespaceTests() { diff --git a/src/ServiceManagement/Services/Commands.Test/Store/GetAzureStoreAddOnTest.cs b/src/ServiceManagement/Services/Commands.Test/Store/GetAzureStoreAddOnTest.cs index 4cc44cd638f9..fe299265d14e 100644 --- a/src/ServiceManagement/Services/Commands.Test/Store/GetAzureStoreAddOnTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/Store/GetAzureStoreAddOnTest.cs @@ -29,7 +29,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.Store using Resource = Management.Store.Models.CloudServiceListResponse.CloudService.AddOnResource; - public class GetAzureStoreAddOnTests : TestBase + public class GetAzureStoreAddOnTests : SMTestBase { Mock mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/Store/NewAzureStoreAddOnTest.cs b/src/ServiceManagement/Services/Commands.Test/Store/NewAzureStoreAddOnTest.cs index 0546548d0538..d224269f3742 100644 --- a/src/ServiceManagement/Services/Commands.Test/Store/NewAzureStoreAddOnTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/Store/NewAzureStoreAddOnTest.cs @@ -25,7 +25,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.Store { - public class NewAzureStoreAddOnTests : TestBase + public class NewAzureStoreAddOnTests : SMTestBase { Mock mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/Store/RemoveAzureStoreAddOnTest.cs b/src/ServiceManagement/Services/Commands.Test/Store/RemoveAzureStoreAddOnTest.cs index df591e13499a..e4e6ba1411f9 100644 --- a/src/ServiceManagement/Services/Commands.Test/Store/RemoveAzureStoreAddOnTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/Store/RemoveAzureStoreAddOnTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.Store using Resource = Management.Store.Models.CloudServiceListResponse.CloudService.AddOnResource; - public class RemoveAzureStoreAddOnTests : TestBase + public class RemoveAzureStoreAddOnTests : SMTestBase { Mock mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/Store/SetAzureStoreAddOnTest.cs b/src/ServiceManagement/Services/Commands.Test/Store/SetAzureStoreAddOnTest.cs index 44f2639da75b..f0d39ebe0bea 100644 --- a/src/ServiceManagement/Services/Commands.Test/Store/SetAzureStoreAddOnTest.cs +++ b/src/ServiceManagement/Services/Commands.Test/Store/SetAzureStoreAddOnTest.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.Store using Resource = Management.Store.Models.CloudServiceListResponse.CloudService.AddOnResource; - public class SetAzureStoreAddOnTests : TestBase + public class SetAzureStoreAddOnTests : SMTestBase { Mock mockCommandRuntime; diff --git a/src/ServiceManagement/Services/Commands.Test/Websites/GetAzureWebSiteTests.cs b/src/ServiceManagement/Services/Commands.Test/Websites/GetAzureWebSiteTests.cs index b2af5338a9c2..de0003087a0a 100644 --- a/src/ServiceManagement/Services/Commands.Test/Websites/GetAzureWebSiteTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/Websites/GetAzureWebSiteTests.cs @@ -32,9 +32,20 @@ namespace Microsoft.WindowsAzure.Commands.Test.Websites { - + public static class WebsiteCmdletTestsExtensions + { + public static void ExecuteWithProcessing(this AzureSMCmdlet cmdlt) + { + cmdlt.InvokeBeginProcessing(); + cmdlt.ExecuteCmdlet(); + cmdlt.InvokeEndProcessing(); + + } + } + public class GetAzureWebsiteTests : WebsitesTestBase { + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void ProcessGetWebsiteTest() diff --git a/src/ServiceManagement/Services/Commands.Test/Websites/Services/CacheTests.cs b/src/ServiceManagement/Services/Commands.Test/Websites/Services/CacheTests.cs index 990e83e2be28..56a3e02c45b0 100644 --- a/src/ServiceManagement/Services/Commands.Test/Websites/Services/CacheTests.cs +++ b/src/ServiceManagement/Services/Commands.Test/Websites/Services/CacheTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.Websites.Services { - public class CacheTests : TestBase, IDisposable + public class CacheTests : SMTestBase, IDisposable { public static string SubscriptionName = "fakename"; diff --git a/src/ServiceManagement/Services/Commands.Utilities/CloudService/CloudServiceClient.cs b/src/ServiceManagement/Services/Commands.Utilities/CloudService/CloudServiceClient.cs index bc01b61bbea8..e9b7fad50cc3 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/CloudService/CloudServiceClient.cs +++ b/src/ServiceManagement/Services/Commands.Utilities/CloudService/CloudServiceClient.cs @@ -825,7 +825,7 @@ private DeploymentGetResponse DeployPackage(bool launch, bool forceUpgrade, Publ if (launch) { - GeneralUtilities.LaunchWebPage(deployment.Uri.ToString()); + ProcessHelper.Start(deployment.Uri.ToString()); } return deployment; } diff --git a/src/ServiceManagement/Services/Commands.Utilities/Common/CloudServiceProject.cs b/src/ServiceManagement/Services/Commands.Utilities/Common/CloudServiceProject.cs index d914be2ea463..b97756d67221 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Common/CloudServiceProject.cs +++ b/src/ServiceManagement/Services/Commands.Utilities/Common/CloudServiceProject.cs @@ -205,7 +205,9 @@ private string GetRoleName(string name, string defaultName, IEnumerable private void AddRoleCore(string scaffolding, RoleInfo role) { Dictionary parameters = CreateDefaultParameters(role); - parameters[ScaffoldParams.NodeModules] = GeneralUtilities.GetNodeModulesPath(); + parameters[ScaffoldParams.NodeModules] = Path.Combine( + FileUtilities.GetAssemblyDirectory(), + Resources.NodeModulesPath); parameters[ScaffoldParams.NodeJsProgramFilesX86] = FileUtilities.GetWithProgramFilesPath(Resources.NodeProgramFilesFolderName, false); GenerateScaffolding(scaffolding, role.Name, parameters); diff --git a/src/ServiceManagement/Services/Commands/Websites/ShowAzurePortal.cs b/src/ServiceManagement/Services/Commands/Websites/ShowAzurePortal.cs index 2bc1830d9122..fcb231674759 100644 --- a/src/ServiceManagement/Services/Commands/Websites/ShowAzurePortal.cs +++ b/src/ServiceManagement/Services/Commands/Websites/ShowAzurePortal.cs @@ -74,7 +74,7 @@ public override void ExecuteCmdlet() string.Format(Resources.WebsiteSufixUrl, Name)); } - GeneralUtilities.LaunchWebPage(managementPortalUrl); + ProcessHelper.Start(managementPortalUrl); } } } \ No newline at end of file diff --git a/src/ServiceManagement/Services/Commands/Websites/ShowAzureWebsite.cs b/src/ServiceManagement/Services/Commands/Websites/ShowAzureWebsite.cs index ad64f596c954..503ad9e08569 100644 --- a/src/ServiceManagement/Services/Commands/Websites/ShowAzureWebsite.cs +++ b/src/ServiceManagement/Services/Commands/Websites/ShowAzureWebsite.cs @@ -29,7 +29,7 @@ public class ShowAzureWebsiteCommand : WebsiteContextBaseCmdlet public override void ExecuteCmdlet() { Site websiteObject = WebsitesClient.GetWebsite(Name, Slot); - GeneralUtilities.LaunchWebPage("http://" + websiteObject.HostNames.First()); + ProcessHelper.Start("http://" + websiteObject.HostNames.First()); } } } diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/AzureSqlDatabaseCertAuthTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/AzureSqlDatabaseCertAuthTests.cs index 5cbf27b7c832..3a0ac4923f46 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/AzureSqlDatabaseCertAuthTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/AzureSqlDatabaseCertAuthTests.cs @@ -31,7 +31,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class AzureSqlDatabaseTests : TestBase + public class AzureSqlDatabaseTests : SMTestBase { [TestCleanup] public void CleanupTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/AzureSqlDatabaseCopyCertAuthTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/AzureSqlDatabaseCopyCertAuthTests.cs index 5932cc9c0070..607e52f6aa6a 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/AzureSqlDatabaseCopyCertAuthTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/AzureSqlDatabaseCopyCertAuthTests.cs @@ -29,7 +29,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class AzureSqlDatabaseCopyCertAuthTests : TestBase + public class AzureSqlDatabaseCopyCertAuthTests : SMTestBase { private DateTime TestStartTime { get; set; } diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/DatabaseCmdletAttributionTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/DatabaseCmdletAttributionTests.cs index f7fbd5eca4e3..842faa994aad 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/DatabaseCmdletAttributionTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/DatabaseCmdletAttributionTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cm /// These tests prevent regression in parameter validation attributes. /// [TestClass] - public class DatabaseCmdletAttributionTests : TestBase + public class DatabaseCmdletAttributionTests : SMTestBase { [TestInitialize] public void SetupTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/DatabaseCopyCmdletAttributionTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/DatabaseCopyCmdletAttributionTests.cs index b83700fa0066..ddd5282070b2 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/DatabaseCopyCmdletAttributionTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/DatabaseCopyCmdletAttributionTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cm /// These tests prevent regression in parameter validation attributes. /// [TestClass] - public class DatabaseCopyCmdletAttributionTests : TestBase + public class DatabaseCopyCmdletAttributionTests : SMTestBase { [TestMethod] public void GetAzureSqlDatabaseCopyAttributeTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseOperationTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseOperationTests.cs index 7438f2c311fa..69f6a3ef1d2b 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseOperationTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseOperationTests.cs @@ -21,7 +21,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class GetAzureSqlDatabaseOperationTests : TestBase + public class GetAzureSqlDatabaseOperationTests : SMTestBase { [TestCleanup] public void CleanupTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseServiceObjectiveTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseServiceObjectiveTests.cs index 3fb3a8549545..d1db7e05b9fc 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseServiceObjectiveTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseServiceObjectiveTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class GetAzureSqlDatabaseServiceObjectiveTests : TestBase + public class GetAzureSqlDatabaseServiceObjectiveTests : SMTestBase { [TestCleanup] public void CleanupTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseTests.cs index 991aaed2bb6e..5c69faac277a 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetAzureSqlDatabaseTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class GetAzureSqlDatabaseTests : TestBase + public class GetAzureSqlDatabaseTests : SMTestBase { [TestInitialize] public void InitializeTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRecoverableDatabaseTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRecoverableDatabaseTests.cs index 791ec090cc93..659a8337c541 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRecoverableDatabaseTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRecoverableDatabaseTests.cs @@ -29,7 +29,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class GetRecoverableDatabaseTests : TestBase + public class GetRecoverableDatabaseTests : SMTestBase { private static System.Management.Automation.PowerShell powershell; diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRestorableDroppedDatabaseCertAuthTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRestorableDroppedDatabaseCertAuthTests.cs index e44858c1c471..98c4131aa5a3 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRestorableDroppedDatabaseCertAuthTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRestorableDroppedDatabaseCertAuthTests.cs @@ -32,7 +32,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class GetRestorableDroppedDatabaseCertAuthTests : TestBase + public class GetRestorableDroppedDatabaseCertAuthTests : SMTestBase { private const string deletionDateStringFormat = "yyyy-MM-ddTHH:mm:ss.FFFZ"; diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRestorableDroppedDatabaseSqlAuthTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRestorableDroppedDatabaseSqlAuthTests.cs index 0e18f3e0e4ab..56e3615c3248 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRestorableDroppedDatabaseSqlAuthTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/GetRestorableDroppedDatabaseSqlAuthTests.cs @@ -25,7 +25,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class GetRestorableDroppedDatabaseSqlAuthTests : TestBase + public class GetRestorableDroppedDatabaseSqlAuthTests : SMTestBase { private const string deletionDateStringFormat = "yyyy-MM-ddTHH:mm:ss.FFFZ"; diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/ImportExportCmdletTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/ImportExportCmdletTests.cs index abb8884b0d7b..9983601efe9b 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/ImportExportCmdletTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/ImportExportCmdletTests.cs @@ -33,7 +33,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cm /// Get-AzureSqlDatabaseImportExportStatus cmdlet. /// [TestClass] - public class ImportExportCmdletTests : TestBase + public class ImportExportCmdletTests : SMTestBase { [TestCleanup] public void CleanupTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlDatabaseServerContextTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlDatabaseServerContextTests.cs index 700d6b30a947..1ed1b6027751 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlDatabaseServerContextTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlDatabaseServerContextTests.cs @@ -31,7 +31,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class NewAzureSqlDatabaseServerContextTests : TestBase + public class NewAzureSqlDatabaseServerContextTests : SMTestBase { [TestCleanup] public void CleanupTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlDatabaseTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlDatabaseTests.cs index c6df221e708d..f10c12f76b1e 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlDatabaseTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlDatabaseTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class NewAzureSqlDatabaseTests : TestBase + public class NewAzureSqlDatabaseTests : SMTestBase { /// /// Initialize the necessary environment for the tests. diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlPremiumDatabaseTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlPremiumDatabaseTests.cs index dc316ae216b0..964ebe30c9a3 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlPremiumDatabaseTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/NewAzureSqlPremiumDatabaseTests.cs @@ -20,7 +20,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class NewAzureSqlPremiumDatabaseTests : TestBase + public class NewAzureSqlPremiumDatabaseTests : SMTestBase { [TestCleanup] public void CleanupTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RecoverDatabaseTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RecoverDatabaseTests.cs index e2fb1fd30a70..93c7ef36678d 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RecoverDatabaseTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RecoverDatabaseTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class RecoverDatabaseTests : TestBase + public class RecoverDatabaseTests : SMTestBase { private static System.Management.Automation.PowerShell powershell; diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RemoveAzureSqlDatabaseTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RemoveAzureSqlDatabaseTests.cs index f0a87fbdbcdd..896a64ec93ed 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RemoveAzureSqlDatabaseTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RemoveAzureSqlDatabaseTests.cs @@ -22,7 +22,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class RemoveAzureSqlDatabaseTests : TestBase + public class RemoveAzureSqlDatabaseTests : SMTestBase { [TestCleanup] public void CleanupTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RestoreDatabaseTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RestoreDatabaseTests.cs index 53728462dc1d..c98e3de93af5 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RestoreDatabaseTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/RestoreDatabaseTests.cs @@ -27,7 +27,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class RestoreDatabaseTests : TestBase + public class RestoreDatabaseTests : SMTestBase { private static System.Management.Automation.PowerShell powershell; diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/SetAzureSqlDatabaseTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/SetAzureSqlDatabaseTests.cs index 0313457471d1..99c5019bca73 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/SetAzureSqlDatabaseTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Database/Cmdlet/SetAzureSqlDatabaseTests.cs @@ -23,7 +23,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Database.Cmdlet { [TestClass] - public class SetAzureSqlDatabaseTests : TestBase + public class SetAzureSqlDatabaseTests : SMTestBase { [TestInitialize] public void InitializeTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/ExceptionHandlerTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/ExceptionHandlerTests.cs index 508814cb7666..fef330b75e5c 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/ExceptionHandlerTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/ExceptionHandlerTests.cs @@ -25,7 +25,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Server.Cmdlet { [TestClass] - public class ExceptionHandlerTests : TestBase + public class ExceptionHandlerTests : SMTestBase { [TestMethod] public void ServiceResourceErrorTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Firewall/Cmdlet/FirewallCmdletAttributionTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Firewall/Cmdlet/FirewallCmdletAttributionTests.cs index c2da626e4602..2de212ee7366 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Firewall/Cmdlet/FirewallCmdletAttributionTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Firewall/Cmdlet/FirewallCmdletAttributionTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Server.Cmdl /// These tests prevent regression in parameter validation attributes. /// [TestClass] - public class FirewallCmdletAttributionTests : TestBase + public class FirewallCmdletAttributionTests : SMTestBase { [TestInitialize] public void SetupTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Firewall/Cmdlet/FirewallCmdletTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Firewall/Cmdlet/FirewallCmdletTests.cs index 7cba63f01036..008469dabe8c 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Firewall/Cmdlet/FirewallCmdletTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Firewall/Cmdlet/FirewallCmdletTests.cs @@ -29,7 +29,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Firewall.Cmdlet { [TestClass] - public class FirewallCmdletTests : TestBase + public class FirewallCmdletTests : SMTestBase { [TestCleanup] public void CleanupTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Server/Cmdlet/ServerCmdletAttributionTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Server/Cmdlet/ServerCmdletAttributionTests.cs index 207c0d744ad7..07894b6f2dfa 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Server/Cmdlet/ServerCmdletAttributionTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Server/Cmdlet/ServerCmdletAttributionTests.cs @@ -24,7 +24,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Server.Cmdl /// These tests prevent regression in parameter validation attributes. /// [TestClass] - public class ServerCmdletAttributionTests : TestBase + public class ServerCmdletAttributionTests : SMTestBase { [TestInitialize] public void SetupTest() diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Server/Cmdlet/ServerCmdletTests.cs b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Server/Cmdlet/ServerCmdletTests.cs index 3f92417cbb9e..d58fb822031a 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Server/Cmdlet/ServerCmdletTests.cs +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/UnitTests/Server/Cmdlet/ServerCmdletTests.cs @@ -31,7 +31,7 @@ namespace Microsoft.WindowsAzure.Commands.SqlDatabase.Test.UnitTests.Server.Cmdlet { [TestClass] - public class ServerCmdletTests : TestBase + public class ServerCmdletTests : SMTestBase { // String ID for server version 2. public const string ServerVersion2 = "2.0"; diff --git a/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs index efde651e34d1..62f0f1939d67 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs @@ -173,7 +173,7 @@ public string SrcContainer [Parameter(HelpMessage = "Source Azure Storage Context Object", ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, ParameterSetName = FileParameterSet)] [Parameter(HelpMessage = "Source Azure Storage Context Object", ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, ParameterSetName = FileToBlobParameterSet)] [Parameter(HelpMessage = "Source Azure Storage Context Object", ParameterSetName = UriParameterSet)] - public override AzureStorageContext Context { get; set; } + public new AzureStorageContext Context { get; set; } [Parameter(HelpMessage = "Destination Storage context object", Mandatory = false)] public AzureStorageContext DestContext { get; set; } diff --git a/src/ServiceManagement/Storage/Commands.Storage/Blob/StorageDataMovementCmdletBase.cs b/src/ServiceManagement/Storage/Commands.Storage/Blob/StorageDataMovementCmdletBase.cs index 261e41d1c646..a2d6e80d9686 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Blob/StorageDataMovementCmdletBase.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Blob/StorageDataMovementCmdletBase.cs @@ -170,19 +170,11 @@ protected override void EndProcessing() } } - /// - /// Dispose DataMovement cmdlet - /// - public void Dispose() - { - Dispose(true); - } - /// /// Dispose DataMovement cmdlet /// /// User disposing - protected virtual void Dispose(bool disposing) + protected override void Dispose(bool disposing) { if (disposing) { @@ -192,6 +184,7 @@ protected virtual void Dispose(bool disposing) this.transferJobRunner = null; } } + base.Dispose(disposing); } } } diff --git a/src/ServiceManagement/Storage/Commands.Storage/Common/StorageCloudCmdletBase.cs b/src/ServiceManagement/Storage/Commands.Storage/Common/StorageCloudCmdletBase.cs index a8283600a4a1..795075c77c6e 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/Common/StorageCloudCmdletBase.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/Common/StorageCloudCmdletBase.cs @@ -43,7 +43,7 @@ public class StorageCloudCmdletBase : CloudBaseCmdlet { [Parameter(HelpMessage = "Azure Storage Context Object", ValueFromPipelineByPropertyName = true)] - public virtual AzureStorageContext Context { get; set; } + public AzureStorageContext Context { get; set; } [Parameter(HelpMessage = "The server time out for each request in seconds.")] public virtual int? ServerTimeoutPerRequest { get; set; } @@ -245,7 +245,7 @@ protected override void InitChannelCurrentSubscription(bool force) internal virtual bool ShouldInitServiceChannel() { //Storage Context is empty and have already set the current storage account in subscription - if (Context == null && HasCurrentSubscription && Profile.DefaultContext.Subscription != null && + if (Context == null && Profile.DefaultContext.Subscription != null && Profile.DefaultContext.Subscription != null && !String.IsNullOrEmpty(Profile.DefaultContext.Subscription.GetProperty(AzureSubscription.Property.StorageAccount))) { return true; diff --git a/src/ServiceManagement/Storage/Commands.Storage/File/AzureStorageFileCmdletBase.cs b/src/ServiceManagement/Storage/Commands.Storage/File/AzureStorageFileCmdletBase.cs index 351b6b81007b..246d17e10a8f 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/File/AzureStorageFileCmdletBase.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/File/AzureStorageFileCmdletBase.cs @@ -34,7 +34,7 @@ public abstract class AzureStorageFileCmdletBase : StorageCloudCmdletBase /// Execute command diff --git a/src/ServiceManagement/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageShareSasToken.cs b/src/ServiceManagement/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageShareSasToken.cs index 063b8e6e82b5..0674dec7fa8c 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageShareSasToken.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/File/Cmdlet/NewAzureStorageShareSasToken.cs @@ -68,7 +68,7 @@ public string Policy [Parameter( ValueFromPipeline = true, HelpMessage = "Azure Storage Context Object")] - public override AzureStorageContext Context { get; set; } + public new AzureStorageContext Context { get; set; } // Overwrite the useless parameter public override int? ServerTimeoutPerRequest { get; set; } diff --git a/src/ServiceManagement/Storage/Commands.Storage/File/Cmdlet/StartAzureStorageFileCopy.cs b/src/ServiceManagement/Storage/Commands.Storage/File/Cmdlet/StartAzureStorageFileCopy.cs index d352c84f3d0e..ca5ce511532c 100644 --- a/src/ServiceManagement/Storage/Commands.Storage/File/Cmdlet/StartAzureStorageFileCopy.cs +++ b/src/ServiceManagement/Storage/Commands.Storage/File/Cmdlet/StartAzureStorageFileCopy.cs @@ -120,7 +120,7 @@ public class StartAzureStorageFileCopyCommand : StorageFileDataManagementCmdletB Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = ShareNameParameterSet)] - public override AzureStorageContext Context { get; set; } + public new AzureStorageContext Context { get; set; } [Parameter(HelpMessage = "Destination Storage context object", ParameterSetName = ContainerNameParameterSet)] [Parameter(HelpMessage = "Destination Storage context object", ParameterSetName = ContainerParameterSet)] 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 c37a80b3b2fc..83149ebf4f4b 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Commands.TrafficManager.Test.csproj +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Commands.TrafficManager.Test.csproj @@ -171,6 +171,10 @@ {5ee72c53-1720-4309-b54b-5fb79703195f} Commands.Common + + {c1bda476-a5cc-4394-914d-48b0ec31a710} + Commands.ScenarioTests.Common + {94e96a5c-b5ad-4e10-b13a-3bc16d102aed} Commands.TrafficManager diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/AddTrafficManagerEndpointTests.cs b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/AddTrafficManagerEndpointTests.cs index eeb36f0f3f43..5475de3d86f1 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/AddTrafficManagerEndpointTests.cs +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/AddTrafficManagerEndpointTests.cs @@ -25,7 +25,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.TrafficManager.Endpoints { [TestClass] - public class AddTrafficManagerEndpointTests : TestBase + public class AddTrafficManagerEndpointTests : SMTestBase { private const string ProfileName = "my-profile"; private const string ProfileDomainName = "my.profile.trafficmanager.net"; diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/RemoveTrafficManagerEndpointTests.cs b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/RemoveTrafficManagerEndpointTests.cs index 7b8d1c286455..e17e10170050 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/RemoveTrafficManagerEndpointTests.cs +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/RemoveTrafficManagerEndpointTests.cs @@ -26,7 +26,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.TrafficManager.Endpoints { [TestClass] - public class RemoveTrafficManagerEndpointTests : TestBase + public class RemoveTrafficManagerEndpointTests : SMTestBase { private const string ProfileName = "my-profile"; private const string ProfileDomainName = "my.profile.trafficmanager.net"; diff --git a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/SetTrafficManagerEndpointTests.cs b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/SetTrafficManagerEndpointTests.cs index 623df4ce4d16..7aa97f68b1c5 100644 --- a/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/SetTrafficManagerEndpointTests.cs +++ b/src/ServiceManagement/TrafficManager/Commands.TrafficManager.Test/Endpoints/SetTrafficManagerEndpointTests.cs @@ -25,7 +25,7 @@ namespace Microsoft.WindowsAzure.Commands.Test.TrafficManager.Endpoints { [TestClass] - public class SetTrafficManagerEndpointTests : TestBase + public class SetTrafficManagerEndpointTests : SMTestBase { private const string ProfileName = "my-profile"; private const string ProfileDomainName = "my.profile.trafficmanager.net";