diff --git a/ChangeLog.txt b/ChangeLog.txt index ed8661bbeac4..27759dd0ef3c 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,4 +1,9 @@ -2015.05.29 version 0.9.2 +2015.06.05 version 0.9.3 +* Fixed bug in Websites cmdlets related to slots #454 +* Fix bug in Set-AzureResource cmdlet #456 +* Fix for new azure resource of Microsoft.Storage #457 + +2015.05.29 version 0.9.2 * Deprecated Switch-AzureMode * Profile * Fixed bug in Get-AzureSubscription and Select-AzureSubscription cmdlets diff --git a/setup/azurecmd.wxs b/setup/azurecmd.wxs index fef044eeab56..4da009813683 100644 --- a/setup/azurecmd.wxs +++ b/setup/azurecmd.wxs @@ -1,11 +1,11 @@  - + - + diff --git a/src/Common/Commands.Common/AzurePowerShell.cs b/src/Common/Commands.Common/AzurePowerShell.cs index fac4815caae6..4398ebb9f1cc 100644 --- a/src/Common/Commands.Common/AzurePowerShell.cs +++ b/src/Common/Commands.Common/AzurePowerShell.cs @@ -27,9 +27,9 @@ public class AzurePowerShell public const string AssemblyCopyright = "Copyright © Microsoft"; - public const string AssemblyVersion = "0.9.2"; + public const string AssemblyVersion = "0.9.3"; - public const string AssemblyFileVersion = "0.9.2"; + public const string AssemblyFileVersion = "0.9.3"; public const string ProfileFile = "AzureProfile.json"; diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Entities/Resources/Resource.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Entities/Resources/Resource.cs index d2d87e1dd72f..dbe87b7521d0 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Entities/Resources/Resource.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Entities/Resources/Resource.cs @@ -32,7 +32,7 @@ public class Resource /// /// Gets or sets the id for the resource. /// - [JsonProperty(Required = Required.Always)] + [JsonProperty(Required = Required.Default)] public string Id { get; set; } /// diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs index 126a6834b876..2d4fd867ff83 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/PsObjectExtensions.cs @@ -99,16 +99,36 @@ private static JToken ToJToken(object value) return obj; } - var valueAsArray = value as Array; - if (valueAsArray != null) + var valueAsDictionary = value as IDictionary; + if (valueAsDictionary != null) { - var retVal = new JToken[valueAsArray.Length]; - for (int i = 0; i < valueAsArray.Length; ++i) + JObject obj = new JObject(); + var dictionaryEntries = valueAsDictionary is IDictionary + ? valueAsDictionary.OfType>().Select(kvp => Tuple.Create(kvp.Key, kvp.Value)) + : valueAsDictionary.OfType().Select(dictionaryEntry => Tuple.Create(dictionaryEntry.Key.ToString(), dictionaryEntry.Value)); + + dictionaryEntries = dictionaryEntries.Any(dictionaryEntry => dictionaryEntry.Item1.EqualsInsensitively(Constants.MicrosoftAzureResource)) + ? dictionaryEntries.Where(dictionaryEntry => !PsObjectExtensions.PropertiesToRemove.ContainsKey(dictionaryEntry.Item1)) + : dictionaryEntries; + + foreach (var dictionaryEntry in dictionaryEntries) + { + obj.Add(dictionaryEntry.Item1, PsObjectExtensions.ToJToken(dictionaryEntry.Item2)); + } + + return obj; + } + + var valueAsIList = value as IList; + if (valueAsIList != null) + { + var tmpList = new List(); + foreach(var v in valueAsIList) { - retVal[i] = PsObjectExtensions.ToJToken(valueAsArray.GetValue(i)); + tmpList.Add(PsObjectExtensions.ToJToken(v)); } - return JArray.FromObject(retVal); + return JArray.FromObject(tmpList.ToArray()); } return new JValue(value.ToString()); diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs index bf8713eb823b..34ac019297b8 100644 --- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs +++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Extensions/ResourceExtensions.cs @@ -35,21 +35,26 @@ internal static class ResourceExtensions /// The internal static PSObject ToPsObject(this Resource resource, ResourceObjectFormat objectFormat) { - var resourceType = ResourceIdUtility.GetResourceType(resource.Id); - var extensionResourceType = ResourceIdUtility.GetExtensionResourceType(resource.Id); + var resourceType = string.IsNullOrEmpty(resource.Id) + ? null + : ResourceIdUtility.GetResourceType(resource.Id); + + var extensionResourceType = string.IsNullOrEmpty(resource.Id) + ? null + : ResourceIdUtility.GetExtensionResourceType(resource.Id); var objectDefinition = new Dictionary { { "Name", resource.Name }, - { "ResourceId", resource.Id }, - { "ResourceName", ResourceIdUtility.GetResourceName(resource.Id) }, + { "ResourceId", string.IsNullOrEmpty(resource.Id) ? null : resource.Id }, + { "ResourceName", string.IsNullOrEmpty(resource.Id) ? null : ResourceIdUtility.GetResourceName(resource.Id) }, { "ResourceType", resourceType }, - { "ExtensionResourceName", ResourceIdUtility.GetExtensionResourceName(resource.Id) }, + { "ExtensionResourceName", string.IsNullOrEmpty(resource.Id) ? null : ResourceIdUtility.GetExtensionResourceName(resource.Id) }, { "ExtensionResourceType", extensionResourceType }, { "Kind", resource.Kind }, - { "ResourceGroupName", ResourceIdUtility.GetResourceGroupName(resource.Id) }, + { "ResourceGroupName", string.IsNullOrEmpty(resource.Id) ? null : ResourceIdUtility.GetResourceGroupName(resource.Id) }, { "Location", resource.Location }, - { "SubscriptionId", ResourceIdUtility.GetSubscriptionId(resource.Id) }, + { "SubscriptionId", string.IsNullOrEmpty(resource.Id) ? null : ResourceIdUtility.GetSubscriptionId(resource.Id) }, { "Tags", TagsHelper.GetTagsHashtables(resource.Tags) }, { "Plan", resource.Plan.ToJToken().ToPsObject(objectFormat) }, { "Properties", ResourceExtensions.GetProperties(resource, objectFormat) }, @@ -58,8 +63,13 @@ internal static PSObject ToPsObject(this Resource resource, ResourceObje { "ETag", resource.ETag }, }; - var psObject = PowerShellUtilities.ConstructPSObject( - (resourceType + extensionResourceType).Replace('/', '.'), + var resourceTypeName = resourceType == null && extensionResourceType == null + ? null + : (resourceType + extensionResourceType).Replace('/', '.'); + + var psObject = + PowerShellUtilities.ConstructPSObject( + resourceTypeName, objectDefinition.Where(kvp => kvp.Value != null).SelectManyArray(kvp => new[] { kvp.Key, kvp.Value })); psObject.TypeNames.Add(Constants.MicrosoftAzureResource); diff --git a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 index 0b14cb1ca400..efac5f034789 100644 --- a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 +++ b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.9.2' +ModuleVersion = '0.9.3' # ID used to uniquely identify this module GUID = '81d522a4-6e5d-4105-8f58-376204c47458' diff --git a/src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.dll-Help.psd1 b/src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.dll-Help.psd1 index a9dac0919de8..77ba498798d3 100644 --- a/src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.dll-Help.psd1 +++ b/src/ResourceManager/Storage/Commands.Management.Storage/Microsoft.Azure.Commands.Management.Storage.dll-Help.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.9.2' +ModuleVersion = '0.9.3' # ID used to uniquely identify this module GUID = 'F237EAAA-BD3A-4965-AD4A-BF38598BFEF7' diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/WebAppTests.ps1 b/src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/WebAppTests.ps1 index 77f6c66fcb66..7161c91e12e1 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/WebAppTests.ps1 +++ b/src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/WebAppTests.ps1 @@ -25,6 +25,7 @@ function Test-CreatesNewSimpleWebApp $whpName = Get-WebHostPlanName $apiversion = "2014-04-01" $resourceType = "Microsoft.Web/sites" + $slotName = $wname + "(Dev)" try { #Setup @@ -34,10 +35,13 @@ function Test-CreatesNewSimpleWebApp # Test $actual = New-AzureWebApp -ResourceGroupName $rgname -Name $wname -Location $location -AppServicePlan $whpName $result = Get-AzureWebApp -ResourceGroupName $rgname -Name $wname + $slotCreate = New-AzureWebApp -ResourceGroupName $rgname -Name $wname -Location $location -AppServicePlan $whpName -SlotName Dev + # Assert Assert-AreEqual $wname $result.Name Assert-AreEqual $whpName $result.Properties.ServerFarm + Assert-AreEqual $slotName $slotCreate.Name } finally { diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.WebApp.Test.ScenarioTests.WebAppTests/TestCreatesNewSimpleWebApp.json b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.WebApp.Test.ScenarioTests.WebAppTests/TestCreatesNewSimpleWebApp.json index 8c760a9ed766..c707cadbfcbf 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.WebApp.Test.ScenarioTests.WebAppTests/TestCreatesNewSimpleWebApp.json +++ b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.WebApp.Test.ScenarioTests.WebAppTests/TestCreatesNewSimpleWebApp.json @@ -10,10 +10,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Backup\",\r\n \"namespace\": \"Microsoft.Backup\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BackupVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-09-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-21\",\r\n \"2014-07-10\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"actions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supportTickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [\r\n \"\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.AppService\",\r\n \"namespace\": \"Microsoft.AppService\",\r\n \"authorization\": {\r\n \"applicationId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"roleDefinitionId\": \"6715d172-49c4-46f6-bb21-60512a8689dc\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apiapps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appIdentities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"East US 2\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymenttemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/microsoft.cache\",\r\n \"namespace\": \"microsoft.cache\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorization\": {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-07-01-01dp\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04\",\r\n \"2014-03-31-beta\",\r\n \"2014-03-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01\",\r\n \"2014-07-31-beta\",\r\n \"2014-07-31-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\",\r\n \"2014-04\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitionNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespace\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.MobileEngagement\",\r\n \"namespace\": \"Microsoft.MobileEngagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appcollections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appcollections/apps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkappcollectionnameavailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supportedplatforms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\",\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/successbricks.cleardb\",\r\n \"namespace\": \"successbricks.cleardb\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-extensibility\",\r\n \"2015-01-01-preview\",\r\n \"2014-12-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2014-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.IntelligentSystems\",\r\n \"namespace\": \"Microsoft.IntelligentSystems\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.PowerApps\",\r\n \"namespace\": \"Microsoft.PowerApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateTransientStorage\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"objectIds/apps\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries/items\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"callbacks\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enroll\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2015-03-01-beta\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallrules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metricDefinitions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/resourcepools/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "28614" + "51051" ], "Content-Type": [ "application/json; charset=utf-8" @@ -25,16 +25,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31983" + "14992" ], "x-ms-request-id": [ - "de5a89cb-49dd-483a-b858-c643d3c6ed54" + "c620ae6c-1c7e-4ac7-9667-9a92ca7d2bbd" ], "x-ms-correlation-request-id": [ - "de5a89cb-49dd-483a-b858-c643d3c6ed54" + "c620ae6c-1c7e-4ac7-9667-9a92ca7d2bbd" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235510Z:de5a89cb-49dd-483a-b858-c643d3c6ed54" + "WESTUS:20150528T012232Z:c620ae6c-1c7e-4ac7-9667-9a92ca7d2bbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,14 +43,14 @@ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:09 GMT" + "Thu, 28 May 2015 01:22:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourcegroups/onesdk1683?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlZ3JvdXBzL29uZXNkazE2ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourcegroups/onesdk6790?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -72,17 +72,20 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31982" + "14991" ], "x-ms-request-id": [ - "d78bf846-ec6f-48fc-81be-0c1ae7400554" + "e02e24c2-2bf9-40d3-9147-134c42be9550" ], "x-ms-correlation-request-id": [ - "d78bf846-ec6f-48fc-81be-0c1ae7400554" + "e02e24c2-2bf9-40d3-9147-134c42be9550" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235510Z:d78bf846-ec6f-48fc-81be-0c1ae7400554" + "WESTUS:20150528T012232Z:e02e24c2-2bf9-40d3-9147-134c42be9550" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -91,14 +94,14 @@ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:09 GMT" + "Thu, 28 May 2015 01:22:31 GMT" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourcegroups/onesdk1683?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlZ3JvdXBzL29uZXNkazE2ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourcegroups/onesdk6790?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { @@ -118,16 +121,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31980" + "14989" ], "x-ms-request-id": [ - "1ab29315-10bb-47fd-82f2-279e9331bf34" + "fe9214f2-af3c-4ac7-921d-907b3246bab9" ], "x-ms-correlation-request-id": [ - "1ab29315-10bb-47fd-82f2-279e9331bf34" + "fe9214f2-af3c-4ac7-921d-907b3246bab9" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235547Z:1ab29315-10bb-47fd-82f2-279e9331bf34" + "WESTUS:20150528T012319Z:fe9214f2-af3c-4ac7-921d-907b3246bab9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -136,14 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:46 GMT" + "Thu, 28 May 2015 01:23:19 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourcegroups/onesdk1683?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlZ3JvdXBzL29uZXNkazE2ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourcegroups/onesdk6790?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Brazil South\"\r\n}", "RequestHeaders": { @@ -157,7 +160,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683\",\r\n \"name\": \"onesdk1683\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790\",\r\n \"name\": \"onesdk6790\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "178" @@ -172,16 +175,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "aeb21b8f-9c6f-44ef-9237-bd4f72b01481" + "e8bdd9c7-57ad-4a70-ac2f-b2afe78d1cc9" ], "x-ms-correlation-request-id": [ - "aeb21b8f-9c6f-44ef-9237-bd4f72b01481" + "e8bdd9c7-57ad-4a70-ac2f-b2afe78d1cc9" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235511Z:aeb21b8f-9c6f-44ef-9237-bd4f72b01481" + "WESTUS:20150528T012234Z:e8bdd9c7-57ad-4a70-ac2f-b2afe78d1cc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,14 +193,14 @@ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:10 GMT" + "Thu, 28 May 2015 01:22:34 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/resources?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/resources?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -220,16 +223,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31981" + "14990" ], "x-ms-request-id": [ - "be82422e-bfad-4eb5-8c70-8b4e4ef9d276" + "c4188421-8586-4d32-b08b-658bae6f37af" ], "x-ms-correlation-request-id": [ - "be82422e-bfad-4eb5-8c70-8b4e4ef9d276" + "c4188421-8586-4d32-b08b-658bae6f37af" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235511Z:be82422e-bfad-4eb5-8c70-8b4e4ef9d276" + "WESTUS:20150528T012234Z:c4188421-8586-4d32-b08b-658bae6f37af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,14 +241,14 @@ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:10 GMT" + "Thu, 28 May 2015 01:22:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourcegroups/onesdk1683/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlZ3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourcegroups/onesdk6790/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -271,16 +274,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:7885dcbf-767d-4355-a08e-66450bd0b85a" + "westus:2267d0d7-c2f5-42bb-8815-d58f7c10fed3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31989" + "14981" ], "x-ms-correlation-request-id": [ - "2ec47311-3e66-4911-b0f6-c498e021d18f" + "904b3a80-be6c-4692-9941-23c06aac8441" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235512Z:2ec47311-3e66-4911-b0f6-c498e021d18f" + "WESTUS:20150528T012235Z:904b3a80-be6c-4692-9941-23c06aac8441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -289,16 +292,16 @@ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:11 GMT" + "Thu, 28 May 2015 01:22:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/serverFarms/onesdk8337?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyRmFybXMvb25lc2RrODMzNz9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/serverFarms/onesdk4080?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyRmFybXMvb25lc2RrNDA4MD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"numberOfWorkers\": 1,\r\n \"workerSize\": \"Small\"\r\n },\r\n \"name\": \"onesdk8337\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"numberOfWorkers\": 1,\r\n \"workerSize\": \"Small\"\r\n },\r\n \"name\": \"onesdk4080\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -310,10 +313,10 @@ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/serverfarms/onesdk8337\",\r\n \"name\": \"onesdk8337\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": {\r\n \"name\": \"onesdk8337\",\r\n \"sku\": \"Standard\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk1683-BrazilSouthwebspace\",\r\n \"subscription\": \"cad6adbd-8afd-413d-965c-97eaeeacdf31\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"maximumNumberOfWorkers\": 0,\r\n \"planName\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/serverfarms/onesdk4080\",\r\n \"name\": \"onesdk4080\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": {\r\n \"name\": \"onesdk4080\",\r\n \"sku\": \"Standard\",\r\n \"workerSize\": 0,\r\n \"workerSizeId\": 0,\r\n \"numberOfWorkers\": 1,\r\n \"currentWorkerSize\": 0,\r\n \"currentWorkerSizeId\": 0,\r\n \"currentNumberOfWorkers\": 1,\r\n \"status\": 0,\r\n \"webSpace\": \"onesdk6790-BrazilSouthwebspace\",\r\n \"subscription\": \"cad6adbd-8afd-413d-965c-97eaeeacdf31\",\r\n \"adminSiteName\": null,\r\n \"hostingEnvironment\": null,\r\n \"maximumNumberOfWorkers\": 0,\r\n \"planName\": null,\r\n \"perSiteScaling\": false,\r\n \"hostingEnvironmentId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "624" + "675" ], "Content-Type": [ "application/json" @@ -328,22 +331,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ac6abb72-a106-4c2f-8083-16cca6df4877" + "e51fdae7-13fb-496a-97fd-75fc7c6a7fd5" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-correlation-request-id": [ - "002b5c82-d9b6-4cae-af7b-7072495af98c" + "d81c031b-86dd-42a5-bdfa-91c1551d931c" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235526Z:002b5c82-d9b6-4cae-af7b-7072495af98c" + "WESTUS:20150528T012248Z:d81c031b-86dd-42a5-bdfa-91c1551d931c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:25 GMT" + "Thu, 28 May 2015 01:22:48 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -358,10 +361,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTYxMD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MT9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ServerFarm\": \"onesdk8337\"\r\n },\r\n \"name\": \"onesdk1610\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ServerFarm\": \"onesdk4080\"\r\n },\r\n \"name\": \"onesdk1161\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -373,10 +376,10 @@ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610\",\r\n \"name\": \"onesdk1610\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": {\r\n \"name\": \"onesdk1610\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"onesdk1610.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"onesdk1683-BrazilSouthwebspace\",\r\n \"selfLink\": \"https://waws-prod-cq1-001.api.azurewebsites.windows.net:454/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/webspaces/onesdk1683-BrazilSouthwebspace/sites/onesdk1610\",\r\n \"repositorySiteName\": \"onesdk1610\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"onesdk1610.azurewebsites.net\",\r\n \"onesdk1610.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"onesdk1610.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"onesdk1610.scm.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": \"onesdk8337\",\r\n \"serverFarmId\": null,\r\n \"lastModifiedTimeUtc\": \"2015-03-19T23:55:30.263\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"onesdk1610\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"kind\": null,\r\n \"cloningInfo\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161\",\r\n \"name\": \"onesdk1161\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": {\r\n \"name\": \"onesdk1161\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"onesdk1161.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"onesdk6790-BrazilSouthwebspace\",\r\n \"selfLink\": \"https://waws-prod-cq1-003.api.azurewebsites.windows.net:454/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/webspaces/onesdk6790-BrazilSouthwebspace/sites/onesdk1161\",\r\n \"repositorySiteName\": \"onesdk1161\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"onesdk1161.azurewebsites.net\",\r\n \"onesdk1161.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"onesdk1161.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"onesdk1161.scm.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": \"onesdk4080\",\r\n \"serverFarmId\": null,\r\n \"lastModifiedTimeUtc\": \"2015-05-28T01:22:52.253\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"onesdk1161\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"kind\": null,\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1783" + "1811" ], "Content-Type": [ "application/json" @@ -391,22 +394,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35a11b9e-3c52-44d6-b683-29b07813ec8f" + "cff3a8c3-daa6-452c-a85f-0a265738d2bb" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-correlation-request-id": [ - "09a5df8b-beb4-4af3-ae51-25c4cf7c8f0a" + "b3544fe4-fc2e-40c9-b91a-223c25c910d3" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235535Z:09a5df8b-beb4-4af3-ae51-25c4cf7c8f0a" + "WESTUS:20150528T012256Z:b3544fe4-fc2e-40c9-b91a-223c25c910d3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:35 GMT" + "Thu, 28 May 2015 01:22:56 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -421,8 +424,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/appsettings/list?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTYxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/appsettings/list?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MS9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -430,7 +433,7 @@ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"0.10.32\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"0.10.32\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "336" @@ -448,22 +451,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03cfaa13-d7f8-41f4-a1bd-d3c7087e9e31" + "84c34784-9b38-4c64-be57-01b3a3408f8d" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "x-ms-correlation-request-id": [ - "5ef223a3-8e58-4e20-9e99-f3a298286898" + "e6b9bbc5-aa4f-48ea-ac0e-0929f441ec3b" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235535Z:5ef223a3-8e58-4e20-9e99-f3a298286898" + "WESTUS:20150528T012257Z:e6b9bbc5-aa4f-48ea-ac0e-0929f441ec3b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:35 GMT" + "Thu, 28 May 2015 01:22:56 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -478,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/appsettings/list?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTYxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/appsettings/list?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MS9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -487,7 +490,7 @@ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"0.10.32\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"0.10.32\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "336" @@ -505,22 +508,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f298cdb6-c48b-496d-9790-7250314eec46" + "5aae2e68-e195-4808-8055-37caf88d5499" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" ], "x-ms-correlation-request-id": [ - "e2269865-aab1-45d9-a1b9-9d4ffcb01674" + "9d73fdd9-3bf2-4486-aa7e-7fb64b130250" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235536Z:e2269865-aab1-45d9-a1b9-9d4ffcb01674" + "WESTUS:20150528T012258Z:9d73fdd9-3bf2-4486-aa7e-7fb64b130250" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:36 GMT" + "Thu, 28 May 2015 01:22:57 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -535,8 +538,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/appsettings/list?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTYxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/appsettings/list?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MS9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -544,7 +547,7 @@ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"0.10.32\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"0.10.32\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "336" @@ -562,22 +565,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1c1dcc7-4ff1-4cfa-850a-70bb4d010d2d" + "f44bb157-47a2-48f5-8b05-e49911f7e2fe" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" ], "x-ms-correlation-request-id": [ - "5ba0014a-f7a0-43d0-a30b-0f27952b9a60" + "0d5c7082-282e-4929-9f7c-aea105e073c5" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235537Z:5ba0014a-f7a0-43d0-a30b-0f27952b9a60" + "WESTUS:20150528T012258Z:0d5c7082-282e-4929-9f7c-aea105e073c5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:37 GMT" + "Thu, 28 May 2015 01:22:58 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -592,8 +595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/appsettings/list?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTYxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/appsettings/list?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MS9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -601,7 +604,7 @@ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"0.10.32\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"0.10.32\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "336" @@ -619,22 +622,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "804dd002-99b5-4823-b136-3b8155690103" + "2baf9a4f-0349-421b-b051-35b8b2666bca" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11994" ], "x-ms-correlation-request-id": [ - "6145cc86-f867-45ea-898b-a7c00f152457" + "cd894225-bb65-4bf0-97cc-d34340718547" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235538Z:6145cc86-f867-45ea-898b-a7c00f152457" + "WESTUS:20150528T012259Z:cd894225-bb65-4bf0-97cc-d34340718547" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:37 GMT" + "Thu, 28 May 2015 01:22:59 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -649,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/connectionstrings/list?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTYxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/connectionstrings/list?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MS9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -658,7 +661,7 @@ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": []\r\n}", "ResponseHeaders": { "Content-Length": [ "291" @@ -676,22 +679,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "85cdcffb-8a83-4bae-a3df-dd28ced9921b" + "840887b8-a1d2-4d22-ab4d-04a8a74a079e" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" ], "x-ms-correlation-request-id": [ - "0a4a7a44-4667-4cab-b95c-6a60c1ca143b" + "45c2ea10-34e2-4764-ac02-56bb69109898" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235536Z:0a4a7a44-4667-4cab-b95c-6a60c1ca143b" + "WESTUS:20150528T012257Z:45c2ea10-34e2-4764-ac02-56bb69109898" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:36 GMT" + "Thu, 28 May 2015 01:22:57 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -706,8 +709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/connectionstrings/list?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTYxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/connectionstrings/list?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MS9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -715,7 +718,7 @@ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": []\r\n}", "ResponseHeaders": { "Content-Length": [ "291" @@ -733,22 +736,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff82c5b7-f36a-4ee8-a52c-cc68cf58d5f6" + "0372162f-15c3-4155-beac-06409c9d9b61" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11995" ], "x-ms-correlation-request-id": [ - "de900a6c-91a9-447f-8213-19f1878fa3cc" + "8b399cc2-c8c2-458b-95c1-0d4181a59eba" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235537Z:de900a6c-91a9-447f-8213-19f1878fa3cc" + "WESTUS:20150528T012259Z:8b399cc2-c8c2-458b-95c1-0d4181a59eba" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:37 GMT" + "Thu, 28 May 2015 01:22:58 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -763,8 +766,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTYxMD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MT9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -772,10 +775,10 @@ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610\",\r\n \"name\": \"onesdk1610\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": {\r\n \"name\": \"onesdk1610\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"onesdk1610.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"onesdk1683-BrazilSouthwebspace\",\r\n \"selfLink\": \"https://waws-prod-cq1-001.api.azurewebsites.windows.net:454/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/webspaces/onesdk1683-BrazilSouthwebspace/sites/onesdk1610\",\r\n \"repositorySiteName\": \"onesdk1610\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"onesdk1610.azurewebsites.net\",\r\n \"onesdk1610.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"onesdk1610.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"onesdk1610.scm.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": \"onesdk8337\",\r\n \"serverFarmId\": null,\r\n \"lastModifiedTimeUtc\": \"2015-03-19T23:55:30.35\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"onesdk1610\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"kind\": null,\r\n \"cloningInfo\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161\",\r\n \"name\": \"onesdk1161\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"plan\": null,\r\n \"properties\": {\r\n \"name\": \"onesdk1161\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"onesdk1161.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"onesdk6790-BrazilSouthwebspace\",\r\n \"selfLink\": \"https://waws-prod-cq1-003.api.azurewebsites.windows.net:454/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/webspaces/onesdk6790-BrazilSouthwebspace/sites/onesdk1161\",\r\n \"repositorySiteName\": \"onesdk1161\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"onesdk1161.azurewebsites.net\",\r\n \"onesdk1161.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"onesdk1161.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"onesdk1161.scm.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": \"onesdk4080\",\r\n \"serverFarmId\": null,\r\n \"lastModifiedTimeUtc\": \"2015-05-28T01:22:52.363\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"onesdk1161\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"kind\": null,\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1782" + "1811" ], "Content-Type": [ "application/json" @@ -790,25 +793,91 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0b87898-1862-4727-9b68-43a82fb51fb2" + "4aa7d2d3-a289-4a14-87b3-bdecb509b070" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31995" + "14975" + ], + "x-ms-correlation-request-id": [ + "9f2c33e1-7d0a-4f43-bfb4-cb5092dedcd8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150528T012258Z:9f2c33e1-7d0a-4f43-bfb4-cb5092dedcd8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 May 2015 01:22:57 GMT" + ], + "ETag": [ + "\"1D098E4D13521B0\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/slots/Dev?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MS9zbG90cy9EZXY/YXBpLXZlcnNpb249MjAxNC0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ServerFarm\": \"onesdk4080\"\r\n },\r\n \"name\": \"onesdk1161/Dev\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "135" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/slots/Dev\",\r\n \"name\": \"onesdk1161(Dev)\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": null,\r\n \"plan\": null,\r\n \"properties\": {\r\n \"name\": \"onesdk1161(Dev)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"onesdk1161-dev.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"onesdk6790-BrazilSouthwebspace\",\r\n \"selfLink\": \"https://waws-prod-cq1-003.api.azurewebsites.windows.net:454/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/webspaces/onesdk6790-BrazilSouthwebspace/sites/onesdk1161\",\r\n \"repositorySiteName\": \"onesdk1161\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"onesdk1161-dev.azurewebsites.net\",\r\n \"onesdk1161-dev.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"onesdk1161-dev.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"onesdk1161-dev.scm.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": \"onesdk4080\",\r\n \"serverFarmId\": null,\r\n \"lastModifiedTimeUtc\": \"2015-05-28T01:23:04.373\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"onesdk1161__0606\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"kind\": null,\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1859" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "637246ab-ba6b-40e6-9e9c-516a05022867" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" ], "x-ms-correlation-request-id": [ - "e5cc7a22-667e-4ec4-99b8-89d1be8e7011" + "0e942d74-1554-4453-bf16-6271a8d001ec" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235537Z:e5cc7a22-667e-4ec4-99b8-89d1be8e7011" + "WESTUS:20150528T012308Z:0e942d74-1554-4453-bf16-6271a8d001ec" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:36 GMT" + "Thu, 28 May 2015 01:23:07 GMT" ], "ETag": [ - "\"1D062A02E38ACE0\"" + "\"1D098E4D13521B0\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -823,8 +892,179 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/sites/onesdk1610?api-version=2014-06-01&deleteEmptyServerFarm=false&deleteMetrics=true&deleteAllSlots=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTYxMD9hcGktdmVyc2lvbj0yMDE0LTA2LTAxJmRlbGV0ZUVtcHR5U2VydmVyRmFybT1mYWxzZSZkZWxldGVNZXRyaWNzPXRydWUmZGVsZXRlQWxsU2xvdHM9dHJ1ZQ==", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/slots/Dev/config/appsettings/list?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MS9zbG90cy9EZXYvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxNC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/slots/Dev/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": null,\r\n \"plan\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"0.10.32\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "348" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f54b6599-3e16-4641-879a-08afe490a61d" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "69fb83be-a47a-454f-89fe-39b2a0fcda15" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150528T012308Z:69fb83be-a47a-454f-89fe-39b2a0fcda15" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 May 2015 01:23:07 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/slots/Dev/config/appsettings/list?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MS9zbG90cy9EZXYvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxNC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/slots/Dev/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": null,\r\n \"plan\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"WEBSITE_NODE_DEFAULT_VERSION\",\r\n \"value\": \"0.10.32\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "348" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d10ead9e-e7e6-47de-84d9-712787b455fd" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "4a7e8b3a-90ec-4f9a-a95f-5933c3646992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150528T012309Z:4a7e8b3a-90ec-4f9a-a95f-5933c3646992" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 May 2015 01:23:08 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/slots/Dev/config/connectionstrings/list?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MS9zbG90cy9EZXYvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAxNC0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161/slots/Dev/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"kind\": null,\r\n \"location\": \"Brazil South\",\r\n \"tags\": null,\r\n \"plan\": null,\r\n \"properties\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "303" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "975799e1-2969-44b7-8f29-b70f9b6d26be" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "8ebe1641-3735-43fb-9935-d8c987be3fec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20150528T012309Z:8ebe1641-3735-43fb-9935-d8c987be3fec" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 May 2015 01:23:08 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/sites/onesdk1161?api-version=2014-06-01&deleteEmptyServerFarm=false&deleteMetrics=true&deleteAllSlots=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvb25lc2RrMTE2MT9hcGktdmVyc2lvbj0yMDE0LTA2LTAxJmRlbGV0ZUVtcHR5U2VydmVyRmFybT1mYWxzZSZkZWxldGVNZXRyaWNzPXRydWUmZGVsZXRlQWxsU2xvdHM9dHJ1ZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -847,25 +1087,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "260b826b-467b-402e-b067-be7e3776ac47" + "a4cf2d2b-1ac8-4f98-b2e9-ce1f143db437" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1191" ], "x-ms-correlation-request-id": [ - "b46a166f-8776-4bc9-b183-5c0ba0f6f834" + "14d88d1e-e903-422c-ac3a-7ce0c1a5846c" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235543Z:b46a166f-8776-4bc9-b183-5c0ba0f6f834" + "WESTUS:20150528T012315Z:14d88d1e-e903-422c-ac3a-7ce0c1a5846c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:42 GMT" + "Thu, 28 May 2015 01:23:15 GMT" ], "ETag": [ - "\"1D062A02E38ACE0\"" + "\"1D098E4D13521B0\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -880,8 +1120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk1683/providers/Microsoft.Web/serverFarms/onesdk8337?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazE2ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyRmFybXMvb25lc2RrODMzNz9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourceGroups/onesdk6790/providers/Microsoft.Web/serverFarms/onesdk4080?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlR3JvdXBzL29uZXNkazY3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2VydmVyRmFybXMvb25lc2RrNDA4MD9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -904,22 +1144,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "25cbc72b-ceb0-4328-9b34-38f01a3bd46d" + "bdd352ad-756b-4d3a-85e7-ae8f516d9ac5" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1190" ], "x-ms-correlation-request-id": [ - "1335fbf9-a0e9-41b5-85d8-abded2782dfd" + "1ed427de-90af-41d7-a15a-b86110d54ff7" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235547Z:1335fbf9-a0e9-41b5-85d8-abded2782dfd" + "WESTUS:20150528T012319Z:1ed427de-90af-41d7-a15a-b86110d54ff7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:47 GMT" + "Thu, 28 May 2015 01:23:19 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -934,8 +1174,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourcegroups/onesdk1683?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlZ3JvdXBzL29uZXNkazE2ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/resourcegroups/onesdk6790?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL3Jlc291cmNlZ3JvdXBzL29uZXNkazY3OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -958,16 +1198,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "16251e40-c4b8-433b-a0dd-f584ef17b0a0" + "6d5ec13d-fa56-4a0a-a88f-5e27b15517ad" ], "x-ms-correlation-request-id": [ - "16251e40-c4b8-433b-a0dd-f584ef17b0a0" + "6d5ec13d-fa56-4a0a-a88f-5e27b15517ad" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235549Z:16251e40-c4b8-433b-a0dd-f584ef17b0a0" + "WESTUS:20150528T012322Z:6d5ec13d-fa56-4a0a-a88f-5e27b15517ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -976,17 +1216,17 @@ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:48 GMT" + "Thu, 28 May 2015 01:23:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNjgzLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzkwLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNjgzLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOamd6TFVKU1FWcEpURk5QVlZSSUlpd2lhbTlpVEc5allYUnBiMjRpT2lKaWNtRjZhV3h6YjNWMGFDSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzkwLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOemt3TFVKU1FWcEpURk5QVlZSSUlpd2lhbTlpVEc5allYUnBiMjRpT2lKaWNtRjZhV3h6YjNWMGFDSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1012,16 +1252,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31979" + "14988" ], "x-ms-request-id": [ - "1476f660-db6b-4c03-bb26-8019d296ac1b" + "4788d23e-eef9-4897-bb9a-b358049995e4" ], "x-ms-correlation-request-id": [ - "1476f660-db6b-4c03-bb26-8019d296ac1b" + "4788d23e-eef9-4897-bb9a-b358049995e4" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235549Z:1476f660-db6b-4c03-bb26-8019d296ac1b" + "WESTUS:20150528T012322Z:4788d23e-eef9-4897-bb9a-b358049995e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1030,17 +1270,17 @@ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:55:49 GMT" + "Thu, 28 May 2015 01:23:21 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNjgzLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzkwLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNjgzLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOamd6TFVKU1FWcEpURk5QVlZSSUlpd2lhbTlpVEc5allYUnBiMjRpT2lKaWNtRjZhV3h6YjNWMGFDSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzkwLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOemt3TFVKU1FWcEpURk5QVlZSSUlpd2lhbTlpVEc5allYUnBiMjRpT2lKaWNtRjZhV3h6YjNWMGFDSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1066,16 +1306,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31978" + "14987" ], "x-ms-request-id": [ - "8f68d803-703e-41a9-a8fc-528b027c88f4" + "9895138a-8f1e-44bd-9138-2a2fa08b2b76" ], "x-ms-correlation-request-id": [ - "8f68d803-703e-41a9-a8fc-528b027c88f4" + "9895138a-8f1e-44bd-9138-2a2fa08b2b76" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235605Z:8f68d803-703e-41a9-a8fc-528b027c88f4" + "WESTUS:20150528T012338Z:9895138a-8f1e-44bd-9138-2a2fa08b2b76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1084,17 +1324,17 @@ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:56:04 GMT" + "Thu, 28 May 2015 01:23:37 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNjgzLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzkwLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNjgzLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOamd6TFVKU1FWcEpURk5QVlZSSUlpd2lhbTlpVEc5allYUnBiMjRpT2lKaWNtRjZhV3h6YjNWMGFDSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzkwLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOemt3TFVKU1FWcEpURk5QVlZSSUlpd2lhbTlpVEc5allYUnBiMjRpT2lKaWNtRjZhV3h6YjNWMGFDSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1120,16 +1360,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31977" + "14986" ], "x-ms-request-id": [ - "39326984-6533-4566-8fde-c6cb65214531" + "6cd30214-8841-499a-9899-ec1cbbf77cc9" ], "x-ms-correlation-request-id": [ - "39326984-6533-4566-8fde-c6cb65214531" + "6cd30214-8841-499a-9899-ec1cbbf77cc9" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235620Z:39326984-6533-4566-8fde-c6cb65214531" + "WESTUS:20150528T012353Z:6cd30214-8841-499a-9899-ec1cbbf77cc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1138,17 +1378,17 @@ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:56:20 GMT" + "Thu, 28 May 2015 01:23:53 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNjgzLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzkwLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNjgzLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOamd6TFVKU1FWcEpURk5QVlZSSUlpd2lhbTlpVEc5allYUnBiMjRpT2lKaWNtRjZhV3h6YjNWMGFDSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cad6adbd-8afd-413d-965c-97eaeeacdf31/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NzkwLUJSQVpJTFNPVVRIIiwiam9iTG9jYXRpb24iOiJicmF6aWxzb3V0aCJ9?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2FkNmFkYmQtOGFmZC00MTNkLTk2NWMtOTdlYWVlYWNkZjMxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJOemt3TFVKU1FWcEpURk5QVlZSSUlpd2lhbTlpVEc5allYUnBiMjRpT2lKaWNtRjZhV3h6YjNWMGFDSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1171,16 +1411,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "31976" + "14985" ], "x-ms-request-id": [ - "9bea07a8-5c6c-4d34-973e-a9901f773fde" + "8d89e9d9-5b25-4e65-82b2-9a824ab03cc2" ], "x-ms-correlation-request-id": [ - "9bea07a8-5c6c-4d34-973e-a9901f773fde" + "8d89e9d9-5b25-4e65-82b2-9a824ab03cc2" ], "x-ms-routing-request-id": [ - "WESTUS:20150319T235636Z:9bea07a8-5c6c-4d34-973e-a9901f773fde" + "WESTUS:20150528T012409Z:8d89e9d9-5b25-4e65-82b2-9a824ab03cc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1189,7 +1429,7 @@ "no-cache" ], "Date": [ - "Thu, 19 Mar 2015 23:56:35 GMT" + "Thu, 28 May 2015 01:24:08 GMT" ] }, "StatusCode": 200 @@ -1197,9 +1437,9 @@ ], "Names": { "Test-CreatesNewSimpleWebApp": [ - "onesdk1683", - "onesdk1610", - "onesdk8337" + "onesdk6790", + "onesdk1161", + "onesdk4080" ] }, "Variables": { diff --git a/src/ResourceManager/Websites/Commands.Websites/Utilities/WebsitesClient.cs b/src/ResourceManager/Websites/Commands.Websites/Utilities/WebsitesClient.cs index 786fad836960..f2e880d3779a 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Utilities/WebsitesClient.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Utilities/WebsitesClient.cs @@ -47,13 +47,20 @@ public WebSiteManagementClient WrappedWebsitesClient public WebSite CreateWebsite(string resourceGroupName, string webSiteName, string slotName, string location, string webHostingPlan) { + string webSiteSlotName = webSiteName; + if (string.IsNullOrEmpty(slotName) == false) + { + webSiteSlotName = string.Concat(webSiteName, "/", slotName); + + } + var createdWebSite = WrappedWebsitesClient.WebSites.CreateOrUpdate( resourceGroupName, webSiteName, slotName, new WebSiteCreateOrUpdateParameters { WebSite = new WebSiteBase { - Name = webSiteName, + Name = webSiteSlotName, Location = location, Properties = new WebSiteBaseProperties(webHostingPlan) } diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/PIR.psd1 b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/PIR.psd1 index 181dc83c3ec5..1ffeb5766a02 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/PIR.psd1 +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.PlatformImageRepository/PIR.psd1 @@ -12,7 +12,7 @@ ModuleToProcess = '.\Microsoft.WindowsAzure.Commands.ServiceManagement.PlatformImageRepository.dll' # Version number of this module. -ModuleVersion = '0.9.2' +ModuleVersion = '0.9.3' # ID used to uniquely identify this module GUID = 'a9343cbd-175c-4f72-90c7-2abe9b300644' diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/AzurePreview.psd1 b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/AzurePreview.psd1 index 818b25b624d4..13ffe8a34f58 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/AzurePreview.psd1 +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/AzurePreview.psd1 @@ -12,7 +12,7 @@ ModuleToProcess = '.\Microsoft.WindowsAzure.Commands.ServiceManagement.Preview.dll' # Version number of this module. -ModuleVersion = '0.9.2' +ModuleVersion = '0.9.3' # ID used to uniquely identify this module GUID = '1C72E555-E83F-45E4-AED2-AF3278828DCD' diff --git a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/ExpressRoute.psd1 b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/ExpressRoute.psd1 index 3590e19c0c88..e5e8e7405a29 100644 --- a/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/ExpressRoute.psd1 +++ b/src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/ExpressRoute.psd1 @@ -12,7 +12,7 @@ ModuleToProcess = '.\Microsoft.WindowsAzure.Commands.ExpressRoute.dll' # Version number of this module. -ModuleVersion = '0.9.2' +ModuleVersion = '0.9.3' # ID used to uniquely identify this module GUID = 'e5b10573-30da-456a-9319-4c0a5f8bed4a' diff --git a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 index 6d800656d2c2..4699f17ae6a9 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 +++ b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 @@ -9,7 +9,7 @@ @{ # Version number of this module. -ModuleVersion = '0.9.2' +ModuleVersion = '0.9.3' # ID used to uniquely identify this module GUID = 'D48CF693-4125-4D2D-8790-1514F44CE325' diff --git a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Resources/MockSessions.xml b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Resources/MockSessions.xml index cc8c3988ec0f..fef6e19487b6 100644 --- a/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Resources/MockSessions.xml +++ b/src/ServiceManagement/Sql/Commands.SqlDatabase.Test/Resources/MockSessions.xml @@ -424,7 +424,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -507,7 +507,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(1)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -590,7 +590,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -673,7 +673,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -756,7 +756,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -839,7 +839,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -922,7 +922,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -1005,7 +1005,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -1088,7 +1088,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -1171,7 +1171,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb3'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -1254,7 +1254,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -1342,7 +1342,7 @@ http://localhost:12345/v1/ManagementService.svc/GetAccessToken GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
sqlauthorization @@ -1401,7 +1401,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Servers()?$top=1 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -1484,7 +1484,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/$metadata GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
AccessToken @@ -1560,7 +1560,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -1691,7 +1691,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -1774,7 +1774,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -1857,7 +1857,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -1988,7 +1988,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -2071,7 +2071,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -2154,7 +2154,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -2285,7 +2285,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6) GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -2368,7 +2368,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -2456,7 +2456,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -2539,7 +2539,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -2622,7 +2622,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) MERGE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -2746,7 +2746,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -2829,7 +2829,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -2912,7 +2912,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -2995,7 +2995,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -3078,7 +3078,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) MERGE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -3202,7 +3202,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -3285,7 +3285,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -3373,7 +3373,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -3456,7 +3456,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -3539,7 +3539,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) MERGE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -3661,7 +3661,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'new_testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -3744,7 +3744,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -3827,7 +3827,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'new_testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -3910,7 +3910,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -3993,7 +3993,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) MERGE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -4115,7 +4115,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -4198,7 +4198,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -4286,7 +4286,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -4369,7 +4369,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -4452,7 +4452,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -4531,7 +4531,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -4614,7 +4614,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -4697,7 +4697,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -4776,7 +4776,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -4859,7 +4859,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(1)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -4947,7 +4947,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -5077,7 +5077,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb3'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -5165,7 +5165,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -5248,7 +5248,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives(guid'7203483a-c4fb-4304-9e9f-17c71c904f5d')/DimensionSettings GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -5331,7 +5331,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives(guid'a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0')/DimensionSettings GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -5414,7 +5414,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives(guid'e210706e-cd95-4f72-b5e5-885f8a1406e8')/DimensionSettings GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -5497,7 +5497,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives(guid'a7c4c615-cfb1-464b-b252-925be0a19446')/DimensionSettings GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -5580,7 +5580,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives(guid'a45fea0c-e63c-4bf0-9f81-9964c86b7d2a')/DimensionSettings GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -5663,7 +5663,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives(guid'910b4fcb-8a29-4c3e-958f-f7ba794388b2')/DimensionSettings GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -5746,7 +5746,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives()?$filter=Name%20eq%20'P1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -5829,7 +5829,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives(guid'7203483a-c4fb-4304-9e9f-17c71c904f5d')/DimensionSettings GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -5917,7 +5917,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives()?$filter=Name%20eq%20'P1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -6000,7 +6000,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives(guid'7203483a-c4fb-4304-9e9f-17c71c904f5d')/DimensionSettings GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -6083,7 +6083,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -6214,7 +6214,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6) GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -6297,7 +6297,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -6380,7 +6380,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'SetAzureSqlPremiumDatabaseTests_P1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -6463,7 +6463,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -6546,7 +6546,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6) MERGE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -6670,7 +6670,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'SetAzureSqlPremiumDatabaseTests_P1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -6753,7 +6753,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -6836,7 +6836,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'SetAzureSqlPremiumDatabaseTests_P1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -6919,7 +6919,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7002,7 +7002,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7086,7 +7086,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7165,7 +7165,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7248,7 +7248,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7331,7 +7331,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7410,7 +7410,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7493,7 +7493,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7576,7 +7576,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7655,7 +7655,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb3'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7738,7 +7738,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7821,7 +7821,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(6) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7905,7 +7905,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -7988,7 +7988,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(1)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8071,7 +8071,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8154,7 +8154,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8237,7 +8237,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8320,7 +8320,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8403,7 +8403,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8486,7 +8486,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8569,7 +8569,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8652,7 +8652,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8735,7 +8735,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8818,7 +8818,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8906,7 +8906,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServerQuotas GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -8989,7 +8989,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServerQuotas('Premium_Databases') GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -9077,7 +9077,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9130,7 +9130,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9188,7 +9188,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9241,7 +9241,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9307,7 +9307,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9373,7 +9373,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/bad9a02dab?op=ResetPassword POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9434,7 +9434,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9499,7 +9499,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/64c9ec69ea?op=ResetPassword POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9560,7 +9560,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9625,7 +9625,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/bad9a02dab DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9670,7 +9670,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9728,7 +9728,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/64c9ec69ea DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9773,7 +9773,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9828,7 +9828,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/firewallrules POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9891,7 +9891,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/firewallrules POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -9954,7 +9954,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/firewallrules GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -10011,7 +10011,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/firewallrules/Rule1 PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -10074,7 +10074,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/firewallrules GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -10131,7 +10131,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/firewallrules/Rule1 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -10184,7 +10184,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/firewallrules/Rule2 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -10237,7 +10237,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/firewallrules GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -10299,7 +10299,7 @@ http://localhost:12345/v1/ManagementService.svc/GetAccessToken GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
sqlauthorization @@ -10358,7 +10358,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Servers()?$top=1 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -10441,7 +10441,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/$metadata GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
AccessToken @@ -10512,7 +10512,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/DacOperations/Export POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -10582,7 +10582,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/DacOperations/Status POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -10646,7 +10646,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/DacOperations/Import POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -10718,7 +10718,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/DacOperations/Status POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -10787,7 +10787,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/DacOperations/Export POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -10857,7 +10857,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/DacOperations/Status POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -10921,7 +10921,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/DacOperations/Import POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -10993,7 +10993,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/DacOperations/Status POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -11062,7 +11062,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives/910b4fcb-8a29-4c3e-958f-f7ba794388b2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11119,7 +11119,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11187,7 +11187,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11252,7 +11252,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11317,7 +11317,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11382,7 +11382,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11447,7 +11447,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11512,7 +11512,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11577,7 +11577,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11642,7 +11642,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11707,7 +11707,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11772,7 +11772,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11837,7 +11837,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11902,7 +11902,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -11967,7 +11967,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12032,7 +12032,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12097,7 +12097,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12162,7 +12162,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12227,7 +12227,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12292,7 +12292,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12357,7 +12357,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12422,7 +12422,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12487,7 +12487,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12552,7 +12552,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12617,7 +12617,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12682,7 +12682,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12747,7 +12747,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12812,7 +12812,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12877,7 +12877,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -12942,7 +12942,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13007,7 +13007,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13072,7 +13072,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13137,7 +13137,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13202,7 +13202,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13267,7 +13267,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13332,7 +13332,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13397,7 +13397,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13462,7 +13462,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13527,7 +13527,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13592,7 +13592,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13657,7 +13657,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13722,7 +13722,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13787,7 +13787,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13852,7 +13852,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13917,7 +13917,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -13982,7 +13982,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14047,7 +14047,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14112,7 +14112,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14177,7 +14177,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14242,7 +14242,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14307,7 +14307,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14377,7 +14377,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14442,7 +14442,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14507,7 +14507,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14572,7 +14572,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14637,7 +14637,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14702,7 +14702,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14767,7 +14767,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14832,7 +14832,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14897,7 +14897,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -14962,7 +14962,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15027,7 +15027,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15092,7 +15092,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15157,7 +15157,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15222,7 +15222,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15287,7 +15287,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15352,7 +15352,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15417,7 +15417,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15482,7 +15482,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15547,7 +15547,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15612,7 +15612,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15677,7 +15677,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15742,7 +15742,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15807,7 +15807,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15872,7 +15872,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -15937,7 +15937,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16002,7 +16002,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16067,7 +16067,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16132,7 +16132,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16197,7 +16197,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16262,7 +16262,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16327,7 +16327,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16392,7 +16392,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16457,7 +16457,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16522,7 +16522,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16587,7 +16587,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16652,7 +16652,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16717,7 +16717,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16782,7 +16782,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16847,7 +16847,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16912,7 +16912,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -16977,7 +16977,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17042,7 +17042,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17111,7 +17111,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17176,7 +17176,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17241,7 +17241,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17306,7 +17306,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17371,7 +17371,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17436,7 +17436,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17501,7 +17501,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17566,7 +17566,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17631,7 +17631,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17696,7 +17696,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17761,7 +17761,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17826,7 +17826,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17891,7 +17891,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -17956,7 +17956,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18021,7 +18021,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18086,7 +18086,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18151,7 +18151,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18216,7 +18216,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18281,7 +18281,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18346,7 +18346,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18411,7 +18411,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18476,7 +18476,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18541,7 +18541,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18606,7 +18606,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18671,7 +18671,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18736,7 +18736,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18801,7 +18801,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18866,7 +18866,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18931,7 +18931,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -18996,7 +18996,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19061,7 +19061,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19126,7 +19126,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19191,7 +19191,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19256,7 +19256,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19321,7 +19321,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert1 PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19390,7 +19390,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19455,7 +19455,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert3 PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19525,7 +19525,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19590,7 +19590,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19660,7 +19660,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19725,7 +19725,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19790,7 +19790,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19855,7 +19855,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19920,7 +19920,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -19985,7 +19985,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20055,7 +20055,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20120,7 +20120,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert3 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20181,7 +20181,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert2 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20242,7 +20242,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcert4 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20303,7 +20303,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20368,7 +20368,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20433,7 +20433,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20504,7 +20504,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20569,7 +20569,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20634,7 +20634,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20699,7 +20699,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20764,7 +20764,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20829,7 +20829,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20894,7 +20894,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -20959,7 +20959,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21024,7 +21024,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21089,7 +21089,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21154,7 +21154,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21225,7 +21225,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21290,7 +21290,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21355,7 +21355,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21420,7 +21420,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21485,7 +21485,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21550,7 +21550,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21615,7 +21615,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21680,7 +21680,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21745,7 +21745,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21810,7 +21810,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21875,7 +21875,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -21940,7 +21940,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22005,7 +22005,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22070,7 +22070,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22135,7 +22135,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22200,7 +22200,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22265,7 +22265,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22330,7 +22330,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22395,7 +22395,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22460,7 +22460,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22525,7 +22525,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22590,7 +22590,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22655,7 +22655,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22720,7 +22720,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22785,7 +22785,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22850,7 +22850,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22915,7 +22915,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -22980,7 +22980,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23045,7 +23045,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23110,7 +23110,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23175,7 +23175,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23240,7 +23240,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23305,7 +23305,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23370,7 +23370,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23435,7 +23435,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23500,7 +23500,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23565,7 +23565,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23630,7 +23630,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23695,7 +23695,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23760,7 +23760,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23825,7 +23825,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23890,7 +23890,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -23955,7 +23955,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24020,7 +24020,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24085,7 +24085,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24150,7 +24150,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24215,7 +24215,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24280,7 +24280,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24345,7 +24345,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24410,7 +24410,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24475,7 +24475,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24540,7 +24540,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24605,7 +24605,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24670,7 +24670,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24735,7 +24735,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24800,7 +24800,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24868,7 +24868,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24933,7 +24933,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -24998,7 +24998,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25063,7 +25063,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25128,7 +25128,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25193,7 +25193,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25258,7 +25258,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25323,7 +25323,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25388,7 +25388,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25453,7 +25453,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25518,7 +25518,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25583,7 +25583,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25648,7 +25648,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25713,7 +25713,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25778,7 +25778,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25843,7 +25843,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25908,7 +25908,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -25973,7 +25973,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26038,7 +26038,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26103,7 +26103,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26168,7 +26168,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26233,7 +26233,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26298,7 +26298,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26363,7 +26363,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26428,7 +26428,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26493,7 +26493,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26558,7 +26558,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26623,7 +26623,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26688,7 +26688,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26753,7 +26753,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26818,7 +26818,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26883,7 +26883,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -26948,7 +26948,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27013,7 +27013,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27078,7 +27078,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27143,7 +27143,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27208,7 +27208,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27273,7 +27273,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27338,7 +27338,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27403,7 +27403,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27468,7 +27468,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27533,7 +27533,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27598,7 +27598,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27663,7 +27663,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27728,7 +27728,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27793,7 +27793,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27858,7 +27858,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27923,7 +27923,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -27988,7 +27988,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28053,7 +28053,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28118,7 +28118,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28183,7 +28183,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28248,7 +28248,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databaseoperations?databaseName=testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28313,7 +28313,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databaseoperations?databaseName=testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28378,7 +28378,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databaseoperations/5e0bef58-0282-4e8a-ace3-36d9cb3c1e6c GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28443,7 +28443,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP1 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28504,7 +28504,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertPremiumDBP2 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28565,7 +28565,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbcertGetOperationDbName_08abc738-1381-4164-ae5e-03a4fe59b6d2 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28626,7 +28626,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28691,7 +28691,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -28761,7 +28761,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives()?$filter=Name%20eq%20'P1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -28844,7 +28844,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives(guid'7203483a-c4fb-4304-9e9f-17c71c904f5d')/DimensionSettings GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -28927,7 +28927,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives()?$filter=Name%20eq%20'P2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29010,7 +29010,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives(guid'a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0')/DimensionSettings GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29093,7 +29093,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29180,7 +29180,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29263,7 +29263,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29346,7 +29346,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'NewAzureSqlPremiumDatabaseTests_P1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29429,7 +29429,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29512,7 +29512,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29599,7 +29599,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29682,7 +29682,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29765,7 +29765,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'NewAzureSqlPremiumDatabaseTests_P2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29848,7 +29848,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -29931,7 +29931,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'NewAzureSqlPremiumDatabaseTests_P2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30014,7 +30014,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30102,7 +30102,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases POST - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30233,7 +30233,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30316,7 +30316,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30399,7 +30399,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'getAzureSqlDatabaseOperationTestsDB_08ebd7c9-bfb7-426a-9e2f-9921999567e1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30482,7 +30482,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30565,7 +30565,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30644,7 +30644,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/DatabaseOperations()?$filter=DatabaseName%20eq%20'getAzureSqlDatabaseOperationTestsDB_08ebd7c9-bfb7-426a-9e2f-9921999567e1' GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30727,7 +30727,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/DatabaseOperations()?$filter=DatabaseName%20eq%20'getAzureSqlDatabaseOperationTestsDB_08ebd7c9-bfb7-426a-9e2f-9921999567e1' GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30810,7 +30810,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/DatabaseOperations(guid'6c3afd55-7ce5-45cd-8e4c-f5ae8f8e1659') GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30898,7 +30898,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -30981,7 +30981,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(1)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -31064,7 +31064,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -31147,7 +31147,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -31230,7 +31230,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'NewAzureSqlPremiumDatabaseTests_P1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -31313,7 +31313,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -31396,7 +31396,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -31475,7 +31475,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'NewAzureSqlPremiumDatabaseTests_P2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -31558,7 +31558,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -31641,7 +31641,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -31804,7 +31804,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives()?$filter=Name%20eq%20'P1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -31887,7 +31887,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/ServiceObjectives(guid'7203483a-c4fb-4304-9e9f-17c71c904f5d')/DimensionSettings GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -31970,7 +31970,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -32053,7 +32053,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -32136,7 +32136,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) MERGE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -32258,7 +32258,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -32341,7 +32341,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -32429,7 +32429,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb1'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -32512,7 +32512,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -32595,7 +32595,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(4) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -32674,7 +32674,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases()?$filter=Name%20eq%20'testdb2'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -32757,7 +32757,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5)/ServiceObjective GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -32840,7 +32840,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/Databases(5) DELETE - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -32924,7 +32924,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 WindowsAzurePowershell/v0.7.3.1 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 WindowsAzurePowershell/v0.7.3.1
x-ms-version @@ -32972,7 +32972,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33030,7 +33030,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 WindowsAzurePowershell/v0.7.3.1 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 WindowsAzurePowershell/v0.7.3.1
x-ms-version @@ -33082,7 +33082,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/m4mfnkbsoc DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 WindowsAzurePowershell/v0.7.3.1 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 WindowsAzurePowershell/v0.7.3.1
x-ms-version @@ -33119,7 +33119,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 WindowsAzurePowershell/v0.7.3.1 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 WindowsAzurePowershell/v0.7.3.1
x-ms-version @@ -33165,7 +33165,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33233,7 +33233,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33298,7 +33298,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33363,7 +33363,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33428,7 +33428,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33493,7 +33493,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33558,7 +33558,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33623,7 +33623,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33688,7 +33688,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33753,7 +33753,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33818,7 +33818,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33883,7 +33883,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -33948,7 +33948,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34013,7 +34013,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34078,7 +34078,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34143,7 +34143,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34208,7 +34208,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34273,7 +34273,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34338,7 +34338,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34403,7 +34403,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34468,7 +34468,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34533,7 +34533,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34598,7 +34598,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34663,7 +34663,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34728,7 +34728,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34793,7 +34793,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34858,7 +34858,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34923,7 +34923,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -34988,7 +34988,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35053,7 +35053,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35118,7 +35118,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35183,7 +35183,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35248,7 +35248,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35313,7 +35313,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35378,7 +35378,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35443,7 +35443,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35508,7 +35508,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35573,7 +35573,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35638,7 +35638,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35703,7 +35703,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35768,7 +35768,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35833,7 +35833,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35898,7 +35898,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -35963,7 +35963,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36028,7 +36028,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36093,7 +36093,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36158,7 +36158,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36223,7 +36223,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36288,7 +36288,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36353,7 +36353,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36418,7 +36418,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36483,7 +36483,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36552,7 +36552,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36617,7 +36617,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36682,7 +36682,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36747,7 +36747,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36812,7 +36812,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36877,7 +36877,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -36942,7 +36942,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37007,7 +37007,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37072,7 +37072,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37137,7 +37137,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37202,7 +37202,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37267,7 +37267,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37332,7 +37332,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37397,7 +37397,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37466,7 +37466,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37531,7 +37531,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37596,7 +37596,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37661,7 +37661,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37726,7 +37726,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37791,7 +37791,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37856,7 +37856,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37921,7 +37921,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -37986,7 +37986,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38051,7 +38051,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38116,7 +38116,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38181,7 +38181,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38246,7 +38246,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38311,7 +38311,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38376,7 +38376,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38441,7 +38441,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38506,7 +38506,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38571,7 +38571,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38636,7 +38636,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38701,7 +38701,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38766,7 +38766,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38831,7 +38831,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38896,7 +38896,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -38961,7 +38961,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39026,7 +39026,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39091,7 +39091,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39156,7 +39156,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39221,7 +39221,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39286,7 +39286,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39351,7 +39351,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39416,7 +39416,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39481,7 +39481,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39546,7 +39546,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39611,7 +39611,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39676,7 +39676,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39741,7 +39741,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39806,7 +39806,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39871,7 +39871,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -39936,7 +39936,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40001,7 +40001,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40066,7 +40066,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40131,7 +40131,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40196,7 +40196,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40261,7 +40261,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40326,7 +40326,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40391,7 +40391,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40456,7 +40456,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40521,7 +40521,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40586,7 +40586,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40655,7 +40655,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40720,7 +40720,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40785,7 +40785,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40850,7 +40850,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40915,7 +40915,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -40980,7 +40980,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41045,7 +41045,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41110,7 +41110,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41175,7 +41175,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41240,7 +41240,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41305,7 +41305,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41370,7 +41370,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41435,7 +41435,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41500,7 +41500,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41565,7 +41565,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41630,7 +41630,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41695,7 +41695,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41760,7 +41760,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41825,7 +41825,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41890,7 +41890,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -41955,7 +41955,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42020,7 +42020,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42085,7 +42085,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42150,7 +42150,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42215,7 +42215,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42280,7 +42280,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42345,7 +42345,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42410,7 +42410,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42475,7 +42475,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42540,7 +42540,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42605,7 +42605,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42670,7 +42670,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42735,7 +42735,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42800,7 +42800,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42865,7 +42865,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42930,7 +42930,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -42995,7 +42995,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43060,7 +43060,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43125,7 +43125,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43190,7 +43190,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43255,7 +43255,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43320,7 +43320,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43385,7 +43385,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43450,7 +43450,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43515,7 +43515,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43580,7 +43580,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43645,7 +43645,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43710,7 +43710,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43775,7 +43775,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43840,7 +43840,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43905,7 +43905,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -43970,7 +43970,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44035,7 +44035,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44100,7 +44100,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44170,7 +44170,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44235,7 +44235,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44300,7 +44300,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44365,7 +44365,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44430,7 +44430,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44495,7 +44495,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44560,7 +44560,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44625,7 +44625,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44690,7 +44690,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44755,7 +44755,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44820,7 +44820,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44885,7 +44885,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -44950,7 +44950,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45015,7 +45015,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45080,7 +45080,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45145,7 +45145,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45210,7 +45210,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45275,7 +45275,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45340,7 +45340,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45405,7 +45405,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45470,7 +45470,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45535,7 +45535,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45600,7 +45600,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45665,7 +45665,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45730,7 +45730,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45795,7 +45795,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45860,7 +45860,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45925,7 +45925,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -45990,7 +45990,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46055,7 +46055,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46120,7 +46120,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46185,7 +46185,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46250,7 +46250,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46315,7 +46315,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46380,7 +46380,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46445,7 +46445,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46510,7 +46510,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46575,7 +46575,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46640,7 +46640,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46705,7 +46705,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46770,7 +46770,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46835,7 +46835,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46900,7 +46900,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -46965,7 +46965,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47030,7 +47030,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47095,7 +47095,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47160,7 +47160,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47225,7 +47225,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47290,7 +47290,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47355,7 +47355,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47420,7 +47420,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47485,7 +47485,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47550,7 +47550,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47615,7 +47615,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47680,7 +47680,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47745,7 +47745,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47810,7 +47810,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47875,7 +47875,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -47940,7 +47940,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48005,7 +48005,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48070,7 +48070,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48135,7 +48135,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48200,7 +48200,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48265,7 +48265,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48330,7 +48330,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48395,7 +48395,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48460,7 +48460,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48525,7 +48525,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48590,7 +48590,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48655,7 +48655,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48720,7 +48720,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48785,7 +48785,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48850,7 +48850,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48915,7 +48915,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -48980,7 +48980,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49045,7 +49045,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49110,7 +49110,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49175,7 +49175,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49240,7 +49240,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49305,7 +49305,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49370,7 +49370,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49435,7 +49435,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49500,7 +49500,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49565,7 +49565,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49630,7 +49630,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49695,7 +49695,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49760,7 +49760,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49825,7 +49825,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49890,7 +49890,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -49955,7 +49955,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50020,7 +50020,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50085,7 +50085,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50150,7 +50150,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50215,7 +50215,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50280,7 +50280,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50345,7 +50345,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50410,7 +50410,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50475,7 +50475,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50540,7 +50540,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50605,7 +50605,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50670,7 +50670,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50735,7 +50735,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50800,7 +50800,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50865,7 +50865,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50930,7 +50930,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -50995,7 +50995,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51060,7 +51060,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51125,7 +51125,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51190,7 +51190,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51255,7 +51255,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51320,7 +51320,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51385,7 +51385,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51450,7 +51450,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51515,7 +51515,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51580,7 +51580,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51645,7 +51645,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51710,7 +51710,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51775,7 +51775,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51840,7 +51840,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51905,7 +51905,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -51970,7 +51970,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52035,7 +52035,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52100,7 +52100,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52165,7 +52165,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52230,7 +52230,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52295,7 +52295,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52360,7 +52360,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52425,7 +52425,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52490,7 +52490,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52555,7 +52555,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52620,7 +52620,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52685,7 +52685,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52750,7 +52750,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52815,7 +52815,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52880,7 +52880,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -52945,7 +52945,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53010,7 +53010,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53075,7 +53075,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53140,7 +53140,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53205,7 +53205,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53270,7 +53270,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53335,7 +53335,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53400,7 +53400,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53465,7 +53465,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53530,7 +53530,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53595,7 +53595,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53660,7 +53660,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53725,7 +53725,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53790,7 +53790,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53855,7 +53855,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53920,7 +53920,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -53985,7 +53985,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54050,7 +54050,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54115,7 +54115,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54180,7 +54180,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54245,7 +54245,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54310,7 +54310,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54375,7 +54375,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54440,7 +54440,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54505,7 +54505,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54570,7 +54570,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54635,7 +54635,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54700,7 +54700,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54765,7 +54765,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54830,7 +54830,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54895,7 +54895,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -54960,7 +54960,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55025,7 +55025,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55090,7 +55090,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55155,7 +55155,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55220,7 +55220,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55285,7 +55285,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55350,7 +55350,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55415,7 +55415,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55480,7 +55480,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55545,7 +55545,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55610,7 +55610,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55675,7 +55675,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55740,7 +55740,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55805,7 +55805,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55870,7 +55870,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -55935,7 +55935,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56004,7 +56004,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56069,7 +56069,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56134,7 +56134,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56204,7 +56204,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56269,7 +56269,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56334,7 +56334,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56399,7 +56399,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions1 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56460,7 +56460,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions2 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56521,7 +56521,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions3 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56582,7 +56582,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions4 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56643,7 +56643,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdbeditions5 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56704,7 +56704,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -56769,7 +56769,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -58566,7 +58566,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/serviceobjectives/26e021db-f1f9-4c98-84c6-92af8ef433d7 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -58623,7 +58623,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/serviceobjectives/910b4fcb-8a29-4c3e-958f-f7ba794388b2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -58680,7 +58680,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/serviceobjectives/910b4fcb-8a29-4c3e-958f-f7ba794388b2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -58737,7 +58737,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/serviceobjectives/910b4fcb-8a29-4c3e-958f-f7ba794388b2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -58794,7 +58794,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/serviceobjectives/910b4fcb-8a29-4c3e-958f-f7ba794388b2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -58851,7 +58851,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/serviceobjectives/910b4fcb-8a29-4c3e-958f-f7ba794388b2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -58908,7 +58908,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb2 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -58961,7 +58961,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb3 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59014,7 +59014,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb0 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59067,7 +59067,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb1 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59120,7 +59120,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb4 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/1.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59173,7 +59173,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59241,7 +59241,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59306,7 +59306,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59371,7 +59371,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59439,7 +59439,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59504,7 +59504,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59569,7 +59569,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59637,7 +59637,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59702,7 +59702,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59767,7 +59767,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59835,7 +59835,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59900,7 +59900,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -59965,7 +59965,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60033,7 +60033,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60098,7 +60098,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb4 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60163,7 +60163,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60233,7 +60233,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1/databasecopies POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60303,7 +60303,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb2/databasecopies POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60373,7 +60373,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb3/databasecopies POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60443,7 +60443,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb4/databasecopies POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60513,7 +60513,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60578,7 +60578,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60643,7 +60643,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb2/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60708,7 +60708,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb3/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60773,7 +60773,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb4/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60838,7 +60838,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies/b6cbe087-5a1b-4108-b662-965238ab1c0b GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60903,7 +60903,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -60968,7 +60968,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb0/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61033,7 +61033,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61098,7 +61098,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb3/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61163,7 +61163,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb4/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61228,7 +61228,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb2/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61293,7 +61293,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/master/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61358,7 +61358,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61423,7 +61423,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61488,7 +61488,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61553,7 +61553,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb3/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61618,7 +61618,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb4/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61683,7 +61683,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb2/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61748,7 +61748,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/master/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61813,7 +61813,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61878,7 +61878,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -61943,7 +61943,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies/b6cbe087-5a1b-4108-b662-965238ab1c0b GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62008,7 +62008,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies/b6cbe087-5a1b-4108-b662-965238ab1c0b PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62075,7 +62075,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies/b6cbe087-5a1b-4108-b662-965238ab1c0b DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62136,7 +62136,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62201,7 +62201,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1/databasecopies/b67a18a3-2ba6-4ba9-b50c-686cb1c8ce55 PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62268,7 +62268,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1/databasecopies/b67a18a3-2ba6-4ba9-b50c-686cb1c8ce55 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62329,7 +62329,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb2/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62394,7 +62394,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb2/databasecopies/56a14baf-8675-4d94-8966-b02dcc242a43 PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62461,7 +62461,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb2/databasecopies/56a14baf-8675-4d94-8966-b02dcc242a43 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62522,7 +62522,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb3/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62587,7 +62587,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb3/databasecopies/5b55e880-8073-4e49-93c0-e8f198c4b975 PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62654,7 +62654,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb3/databasecopies/5b55e880-8073-4e49-93c0-e8f198c4b975 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62715,7 +62715,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb4/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62780,7 +62780,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb4/databasecopies/3a3494d4-fd00-4fc3-b624-1e749bd2cdb1 PUT - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62847,7 +62847,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb4/databasecopies/3a3494d4-fd00-4fc3-b624-1e749bd2cdb1 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62908,7 +62908,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -62973,7 +62973,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63038,7 +63038,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb2/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63103,7 +63103,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb3/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63168,7 +63168,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb4/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63233,7 +63233,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63298,7 +63298,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb3/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63363,7 +63363,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb4/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63428,7 +63428,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb2/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63493,7 +63493,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/master/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63558,7 +63558,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63623,7 +63623,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1/databasecopies GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63688,7 +63688,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63753,7 +63753,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63818,7 +63818,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb3 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63879,7 +63879,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb4 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -63940,7 +63940,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb2 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64001,7 +64001,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64062,7 +64062,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb1 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64123,7 +64123,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64188,7 +64188,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64253,7 +64253,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb3 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64314,7 +64314,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb0 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64375,7 +64375,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb1 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64436,7 +64436,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb2 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64497,7 +64497,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases/testdb4 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64563,7 +64563,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -64616,7 +64616,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0copy1 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -64669,7 +64669,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0copy2 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -64722,7 +64722,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -64779,7 +64779,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/serviceobjectives/26e021db-f1f9-4c98-84c6-92af8ef433d7 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -64836,7 +64836,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64904,7 +64904,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -64969,7 +64969,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65034,7 +65034,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65104,7 +65104,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0/databasecopies POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65174,7 +65174,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65239,7 +65239,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65304,7 +65304,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65369,7 +65369,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65434,7 +65434,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0copy2 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65495,7 +65495,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0copy1 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65556,7 +65556,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/cloud4/databases/testdb0 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65617,7 +65617,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/databases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65682,7 +65682,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/partnersrv/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65752,7 +65752,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65820,7 +65820,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65885,7 +65885,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdb1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -65950,7 +65950,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -66020,7 +66020,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -66085,7 +66085,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdb2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -66150,7 +66150,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -66219,7 +66219,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -66284,7 +66284,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdb3 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -66354,7 +66354,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdb1 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -66415,7 +66415,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdb2 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -66476,7 +66476,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdb3 DELETE - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -66542,7 +66542,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/RestorableDroppedDatabases GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -66625,7 +66625,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/RestorableDroppedDatabases()?$filter=Name%20eq%20'testdb1'%20and%20DeletionDate%20eq%20datetime'2014-04-18T02%3A35%3A06.06Z'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -66708,7 +66708,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/RestorableDroppedDatabases()?$filter=Name%20eq%20'testdb2'%20and%20DeletionDate%20eq%20datetime'2014-04-18T02%3A35%3A12.343Z'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -66796,7 +66796,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/RestorableDroppedDatabases GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -66879,7 +66879,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/RestorableDroppedDatabases()?$filter=Name%20eq%20'testdb1'%20and%20DeletionDate%20eq%20datetime'2014-04-18T02%3A35%3A06.06Z'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -66962,7 +66962,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/RestorableDroppedDatabases()?$filter=Name%20eq%20'testdb2'%20and%20DeletionDate%20eq%20datetime'2014-04-18T02%3A35%3A12.343Z'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -67045,7 +67045,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/RestorableDroppedDatabases()?$filter=Name%20eq%20'testdb1'%20and%20DeletionDate%20eq%20datetime'2014-04-18T02%3A35%3A06.06Z'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -67128,7 +67128,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/RestorableDroppedDatabases()?$filter=Name%20eq%20'testdb2'%20and%20DeletionDate%20eq%20datetime'2014-04-18T02%3A35%3A12.343Z'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -67216,7 +67216,7 @@ http://localhost:12345/v1/ManagementService.svc/Server2('myserver01')/RestorableDroppedDatabases()?$filter=Name%20eq%20'testdbnonexistent'%20and%20DeletionDate%20eq%20datetime'2013-10-01T00%3A00%3A00Z'&$top=2 GET - AzurePowershell/v0.9.2 + AzurePowershell/v0.9.3
DataServiceVersion @@ -67304,7 +67304,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restorabledroppeddatabases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -67369,7 +67369,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restorabledroppeddatabases/testdb1,2015-01-21T00:12:02.713Z GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -67434,7 +67434,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restorabledroppeddatabases/testdb2,2015-01-20T23:58:17.740Z GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -67504,7 +67504,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restorabledroppeddatabases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -67561,7 +67561,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restorabledroppeddatabases/testdb1,2014-04-18T03:08:25.083Z GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -67618,7 +67618,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restorabledroppeddatabases/testdb2,2014-04-18T03:08:28.877Z GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -67675,7 +67675,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restorabledroppeddatabases/testdb1,2014-04-18T03:08:25.083Z GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -67732,7 +67732,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restorabledroppeddatabases/testdb2,2014-04-18T03:08:28.877Z GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -67794,7 +67794,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restorabledroppeddatabases/testdbnonexistent,2013-10-01T00:00:00.000Z GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -67864,7 +67864,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restoredatabaseoperations POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -67931,7 +67931,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/databases/testdb1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -67988,7 +67988,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/serviceobjectives GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/5.0.0.0 AzurePowershell/v0.9.3
x-ms-version @@ -68053,7 +68053,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restoredatabaseoperations POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68120,7 +68120,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restorabledroppeddatabases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68177,7 +68177,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restoredatabaseoperations POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68246,7 +68246,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restorabledroppeddatabases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68303,7 +68303,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/restoredatabaseoperations POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68371,7 +68371,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverabledatabases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68428,7 +68428,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverabledatabases/testdb1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68485,7 +68485,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverabledatabases/testdb2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68547,7 +68547,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverabledatabases?contentview=generic GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68604,7 +68604,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverabledatabases/testdb1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68661,7 +68661,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverabledatabases/testdb2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68718,7 +68718,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverabledatabases/testdb1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68775,7 +68775,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverabledatabases/testdb2 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68837,7 +68837,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverabledatabases/testdbnonexistent GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68899,7 +68899,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverdatabaseoperations POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -68966,7 +68966,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverabledatabases/testdb1 GET - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version @@ -69023,7 +69023,7 @@ https://localhost:65432/00000000-0000-0000-0001-000000000001/services/sqlservers/servers/myserver01/recoverdatabaseoperations POST - Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.2.0 AzurePowershell/v0.9.2 + Microsoft.WindowsAzure.Management.Sql.SqlManagementClient/0.9.3.0 AzurePowershell/v0.9.3
x-ms-version